-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.03 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
77
78
79
80
81
82
83
84
85
{
"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 **/*.ts eslint.config.js",
"types": "tsc --noEmit",
"test": "pnpm tsx --test test/**/*.test.ts"
},
"keywords": [
"ipfs",
"filecoin",
"deploy",
"cli"
],
"files": [
"dist"
],
"author": "v1rtl <[email protected]>",
"engineStrict": true,
"engines": {
"node": ">=20"
},
"license": "MIT",
"dependencies": {
"@ensdomains/content-hash": "^3.0.0",
"@ipld/car": "^5.4.0",
"@stauro/filebase-upload": "^1.0.0",
"@stauro/piggybank": "^0.1.2",
"@ucanto/client": "^9.0.1",
"@ucanto/core": "^10.3.1",
"@ucanto/principal": "^9.0.2",
"@ucanto/transport": "^9.1.1",
"@web3-storage/access": "^20.2.0",
"@web3-storage/capabilities": "^18.1.0",
"@web3-storage/upload-client": "^17.1.4",
"ascii-bar": "^1.0.3",
"colorette": "^2.0.20",
"ipfs-car": "^2.0.0",
"multiformats": "^13.3.2",
"spektr": "^0.1.1",
"table": "^6.9.0",
"tinyglobby": "^0.2.12",
"viem": "^2.23.8"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"semantic-release": "^24.2.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"provenance": true
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}