-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 963 Bytes
/
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
{
"name": "setup-fasm",
"version": "1.4.3",
"private": true,
"author": "stevenwdv",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production",
"start-ts": "node --require=ts-node/register ./src/setup.ts",
"lint": "tsc --noEmit && eslint .",
"lint-only": "eslint .",
"prepare": "husky install ./.hooks"
},
"sideEffects": [
"./src/setup.ts"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/tool-cache": "^2.0.1",
"fasm-versions": "github:stevenwdv/fasm-versions#v1.1",
"simple-git": "^3.26.0"
},
"devDependencies": {
"@types/node": "^20.16.5",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"husky": "^9.1.5",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}