-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.68 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "tipcc.js",
"version": "1.0.2",
"description": "tip.cc API Client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md",
"LICENSE",
"package.json"
],
"homepage": "https://tipcc-js.pages.dev/",
"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",
"prettify": "prettier --write .",
"format": "prettier --write . && eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"test:lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc",
"build:docs": "typedoc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "3.3.3",
"typescript": "^5.0.3"
},
"dependencies": {
"@mxssfd/typedoc-theme": "^1.1.1",
"@tipccjs/tipcc-api-types": "^1.0.9",
"@types/node": "^22.4.1",
"axios": "^1.3.4",
"bignumber.js": "^9.1.1",
"typedoc": "^0.24.4"
}
}