-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.42 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": "setup-dev-drive",
"version": "3.2.0",
"private": true,
"description": "Setup Dev Drive Action",
"main": "lib/setup-dev-drive.js",
"scripts": {
"build": "tsc",
"bundle": "npm run bundle:setup && npm run bundle:cleanup",
"bundle:setup": "ncc build -m -o dist/setup lib/setup-dev-drive.js",
"bundle:cleanup": "ncc build -m -o dist/cleanup lib/cleanup-dev-drive.js",
"lint": "eslint .",
"fmt": "prettier --write src/**/*.ts",
"fmt-check": "prettier --check src/**/*.ts",
"package": "npm run fmt && npm run lint && npm run build && npm run bundle"
},
"keywords": [
"GitHub",
"Actions",
"Dev Drive",
"Setup Dev Drive",
"Windows Dev Drive",
"Microsoft ReFS",
"Microsoft VHDX",
"Microsoft Virtual Drive"
],
"author": "samypr100",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"compare-versions": "^6.1.1",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"shell-quote": "^1.8.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@tsconfig/node20": "^20.1.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.15",
"@types/shell-quote": "^1.7.5",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.9.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
}
}