forked from namespacelabs/nscloud-cache-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 756 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 756 Bytes
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
{
"name": "@namespacelabs/nscloud-cache-action",
"version": "1.0.0",
"description": "Cache artifacts like dependencies and build outputs to a Namespace Cloud cache volume to improve workflow execution time.",
"homepage": "https://namespace.so",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build -o dist/index src/index.ts && ncc build -o dist/post src/post.ts"
},
"author": "Namespace Labs",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"json-multi-parse": "^1.3.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "^16.18.3",
"@vercel/ncc": "^0.38.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}