-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "igor-setup",
"author": "Shi Chen",
"version": "1.1.1",
"main": "./build/index.js",
"type": "module",
"files": [
"build/lib/**/*",
"build/index.*",
"build/types/**/*"
],
"scripts": {
"build": "rimraf dist && ncc build src/index.ts -o dist -a",
"test:main": "npm run build && node -r dotenv/config ./dist/index.js",
"test": "npm run test:build && mocha --enable-source-maps --bail ./build/test/",
"test:build": "rimraf build && tsc && tsc-alias",
"version": "git add -A",
"postversion": "git push --follow-tags",
"preversion": "npm run build"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@bscotch/gamemaker-releases": "^0.7.0",
"adm-zip": "^0.5.16",
"fs-extra": "^11.2.0",
"plist": "^3.1.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.6",
"@types/chai": "^5.0.1",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/plist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vercel/ncc": "^0.38.2",
"chai": "^5.1.2",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.8.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.6.3"
}
}