-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.02 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
{
"name": "@arkntools/depot-recognition",
"version": "1.8.1",
"main": "dist/index.js",
"module": "index.js",
"author": "神代綺凛 <[email protected]>",
"license": "MIT",
"scripts": {
"test": "node ./test && jest --runInBand",
"test:clean": "rimraf -g ./test/cache ./test/**/index.spec.ts",
"build": "rimraf dist && tsc && rollup -c --bundleConfigAsCjs",
"watch": "tsc-watch --onFirstSuccess \"rollup -cw --bundleConfigAsCjs\"",
"lint:fix": "eslint . --ext .ts --fix",
"postversion": "tpv"
},
"dependencies": {
"@arkntools/scripts": "^1.2.1",
"jimp": "^0.22.8",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"simple-statistics": "^7.8.3"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@optimize-lodash/rollup-plugin": "^4.0.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-replace": "^5.0.2",
"@tsuk1ko/postversion": "^1.0.2",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"node-fetch": "^2.6.12",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-external-globals": "^0.8.0",
"rollup-plugin-local-resolve": "^1.0.7",
"ts-jest": "^29.1.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.1.6",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}