-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"name": "setup-nullstone-action",
"version": "1.0.0",
"description": "GitHub action to set up Nullstone CLI",
"main": "dist/index.js",
"scripts": {
"build": "tsc && ncc build -o dist src/setup-nullstone.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"pre-checkin": "npm run format && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullstone-io/setup-nullstone-action.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nullstone-io/setup-nullstone-action/issues"
},
"homepage": "https://github.com/nullstone-io/setup-nullstone-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@types/node": "^24.12.0",
"@vercel/ncc": "^0.34.0",
"prettier": "^2.7.1",
"typescript": "^5.7.3"
}
}