-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.69 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
{
"name": "vmd-action",
"version": "0.0.7",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"clean": "rimraf dist pnpm-lock.yaml node_modules",
"preinstall": "npx only-allow pnpm",
"bundle": "pnpm run format:write && pnpm run package",
"ci-test": "pnpm vitest --run",
"format:write": "prettier --cache --write .",
"format:check": "prettier --check .",
"lint": "eslint --cache --cache-strategy content --report-unused-disable-directives .",
"package": "pnpm ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "pnpm run package --watch",
"test": "pnpm vitest --coverage --run",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build",
"release": "pnpm preflight && changelogen --release --bump",
"preflight": "pnpm install && pnpm run format:write && pnpm run lint && pnpm run test && pnpm run package",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/artifact": "2.1.10",
"@actions/cache": "3.2.4",
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"execa": "9.4.0"
},
"devDependencies": {
"@types/node": "22.7.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.2",
"@vitest/coverage-v8": "2.1.2",
"changelogen": "0.5.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "9.1.6",
"prettier": "^3.3.3",
"rimraf": "6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "2.1.2"
},
"packageManager": "[email protected]"
}