-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "@git-town/action",
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": ">=20.0.0"
},
"engineStrict": true,
"scripts": {
"dev": "npm run build -- --watch",
"build": "esbuild src/index.ts --outfile=dist/index.js --bundle --platform=node --target=node20",
"test": "vitest",
"test:ci": "vitest run",
"lint:eslint": "eslint src --max-warnings=0",
"lint:ec": "ec -config .editorconfig-checker",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"graphology": "^0.25.4",
"graphology-dag": "^0.4.1",
"graphology-traversal": "^0.3.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"toml": "^3.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@vercel/style-guide": "^5.2.0",
"editorconfig-checker": "5.1.8",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"vitest": "^1.4.0"
}
}