-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.21 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@book000/pixivts",
"version": "0.0.0",
"description": "pixiv Unofficial API Library for TypeScript",
"keywords": [
"pixiv",
"typescript",
"pixiv-app",
"pixiv-api",
"pixiv-app-api"
],
"homepage": "https://www.npmjs.com/package/@book000/pixivts",
"bugs": {
"url": "https://github.com/book000/pixivts/issues"
},
"license": "MIT",
"author": "Tomachi <[email protected]>",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:book000/pixivts.git",
"scripts": {
"build": "run-z clean ctix compile generate-docs",
"clean": "rimraf dist output docs",
"compile": "tsc -p tsconfig.build.json",
"ctix": "ctix single -w --noBackup -o src -s false",
"generate-docs": "typedoc --gitRevision master src/index.ts",
"fix": "run-z fix:prettier fix:eslint ctix",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src",
"test": "jest",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:eslint": "eslint . -c eslint.config.mjs",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc",
"prepare": "run-z build",
"prepublishOnly": "run-z lint"
},
"dependencies": {
"@types/qs": "6.9.18",
"axios": "1.7.9",
"mysql2": "3.12.0",
"qs": "6.14.0",
"snake-camel-types": "1.0.1",
"typeorm": "0.3.20",
"typeorm-naming-strategies": "4.1.0"
},
"devDependencies": {
"@book000/eslint-config": "1.7.150",
"@types/jest": "29.5.14",
"@types/node": "22.13.4",
"ctix": "2.7.0",
"eslint": "9.20.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"jest": "29.7.0",
"prettier": "3.5.1",
"rimraf": "6.0.1",
"run-z": "2.1.0",
"ts-jest": "29.2.5",
"typedoc": "0.27.7",
"typescript": "5.7.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
".+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/*.test.ts"
]
},
"packageManager": "[email protected]"
}