-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 899 Bytes
/
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
{
"name": "publish-zinnia-module-action",
"private": true,
"type": "module",
"version": "0.1.0",
"license": "(Apache-2.0 AND MIT)",
"description": "Publish a Zinnia module to the registry",
"repository": "filecoin-station/publish-zinnia-module-action",
"scripts": {
"test": "standard",
"build": "ncc build index.js",
"version": "npm run build && git add dist",
"release": "np && git tag -f v0 && git push --tags -f"
},
"np": {
"publish": false
},
"standard": {
"ignore": [
"dist"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@ipld/car": "^5.2.6",
"@ucanto/core": "^9.0.1",
"@ucanto/principal": "^9.0.0",
"@web3-storage/w3up-client": "^12.3.0",
"files-from-path": "^1.0.4",
"w3name": "^1.0.8"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"np": "^9.2.0",
"standard": "^17.1.0"
}
}