-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.27 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
36
37
38
39
40
{
"name": "spice-cloud-deploy-action",
"version": "1.1.0",
"private": true,
"description": "GitHub Action to deploy apps to the Spice.ai Cloud Platform via the Management API.",
"license": "Apache-2.0",
"homepage": "https://github.com/spicehq/spice-cloud-deploy-action#readme",
"bugs": "https://github.com/spicehq/spice-cloud-deploy-action/issues",
"repository": {
"type": "git",
"url": "https://github.com/spicehq/spice-cloud-deploy-action.git"
},
"engines": {
"node": ">=24"
},
"scripts": {
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --alias:punycode=./node_modules/punycode/punycode.js --outfile=dist/index.js --sourcemap --minify",
"lint": "biome check src __tests__",
"format": "biome format --write src __tests__",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"all": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@spiceai/spice": "^3.1.0",
"punycode": "^2.3.1"
},
"overrides": {
"undici": "^6.23.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}