generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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-cpany",
"version": "0.0.7",
"private": true,
"description": "Setup CPany environment",
"keywords": [
"actions",
"node",
"setup",
"CPany"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cpanyjs/setup-cpany.git"
},
"license": "MIT",
"author": "XLor",
"main": "lib/main.js",
"scripts": {
"all": "pnpm run build && pnpm run format && pnpm run lint && pnpm run package",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"release": "node scripts/release.js"
},
"dependencies": {
"@actions/cache": "^1.0.8",
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"global-dirs": "^3.0.0",
"js-yaml": "^4.1.0",
"kolorist": "^1.5.0",
"resolve": "^1.20.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.4",
"@types/node": "^16.10.5",
"@types/resolve": "^1.20.1",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/ncc": "^0.32.0",
"eslint": "^8.2.0",
"eslint-plugin-github": "^4.3.2",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"pnpm": "^6.26.1",
"prettier": "2.4.1",
"typescript": "^4.4.4"
}
}