-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
{
"name": "@arkntools/unity-js",
"version": "3.2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {
"./dist/utils/aes.js": "./dist/utils/aes.browser.js"
},
"author": "神代綺凛 <[email protected]>",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/arkntools/unity-js"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc",
"lint:fix": "eslint . --ext .ts --fix",
"postversion": "tpv"
},
"dependencies": {
"@arkntools/unity-js-tools": "^3.2.0",
"aes-js": "^3.1.2",
"es-toolkit": "^1.10.1",
"jimp": "^0.22.12",
"jszip": "^3.10.1"
},
"devDependencies": {
"@tsuk1ko/postversion": "^1.0.2",
"@types/aes-js": "^3.1.4",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-love": "^47.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.8.1",
"eslint-plugin-promise": "^6.2.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}