Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,5 @@ dist

/docs
/lib
test.*
test.*
/.vscode
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Walledgarden
Copyright (c) 2023 tipcc.js contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 31 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,42 @@
{
"name": "tipcc.js",
"version": "0.0.2",
"description": "# tip.cc API Client",
"description": "tip.cc API Client",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
"lib/**/*",
"LICENSE",
"README.md",
"package.json",
"tsconfig.json",
"package-lock.json"
"LICENSE",
"package.json"
],
"homepage": "https://tipccjs.org/",
"bugs": {
"url": "https://github.com/tipccjs/tipcc.js/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tipccjs/tipcc.js"
},
"keywords": [
"tip.cc",
"tipcc",
"tipcc.js",
"tipccjs",
"tipcc-api",
"tipcc-client",
"tipcc-api-client"
],
"contributors": [
{
"name": "Walledgarden",
"url": "https://github.com/Walledgarden"
},
{
"name": "ZeroWave",
"url": "https://github.com/ZeroWave022"
}
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
Expand All @@ -21,9 +47,6 @@
"build": "tsc",
"build:docs": "typedoc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"lib": ["ES2022"],
"forceConsistentCasingInFileNames": true
},
"exclude": ["node_modules", "docs", "lib"]
"include": ["src/**/*"]
}