-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "blumen",
"version": "0.1.1",
"description": "🌸 Self-custodial decentralized deployments",
"type": "module",
"bin": {
"blumen": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/StauroDEV/blumen.git"
},
"homepage": "https://github.com/StauroDEV/blumen",
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc -p tsconfig.build.json",
"postbuild": "chmod +x ./dist/cli.js",
"prepublishOnly": "pnpm build",
"lint": "eslint --config eslint.config.js src/**/*.ts eslint.config.js",
"types": "tsc --noEmit"
},
"keywords": [
"ipfs",
"filecoin",
"deploy",
"cli"
],
"files": [
"dist"
],
"author": "v1rtl <[email protected]>",
"engineStrict": true,
"engines": {
"node": ">=18"
},
"license": "MIT",
"dependencies": {
"@ensdomains/content-hash": "^3.0.0",
"@ipld/car": "^5.3.0",
"@stauro/filebase-upload": "^0.0.7",
"@stauro/piggybank": "^0.1.0",
"@ucanto/core": "^10.0.1",
"@ucanto/principal": "^9.0.1",
"@web3-storage/access": "^19.0.0",
"@web3-storage/w3up-client": "^13.1.1",
"ascii-bar": "^1.0.3",
"cborg": "^4.2.0",
"colorette": "^2.0.20",
"globby": "^14.0.1",
"ipfs-car": "^1.2.0",
"multiformats": "^13.1.0",
"spektr": "^0.0.5",
"table": "^6.8.2",
"viem": "^2.13.1"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"semantic-release": "^23.1.1",
"typescript": "^5.4.5"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"provenance": true
},
"packageManager": "[email protected]"
}