-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.91 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.91 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
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
{
"name": "phala",
"version": "1.1.13",
"description": "CLI for Managing Phala Cloud Services",
"author": {
"name": "Phala Network",
"url": "https://github.com/Phala-Network"
},
"repository": {
"type": "git",
"url": "https://github.com/Phala-Network/phala-cloud",
"directory": "cli"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.map",
"LICENSE",
"README.md"
],
"keywords": ["tee", "phala", "cloud"],
"license": "Apache-2.0",
"type": "module",
"exports": "./dist/index.js",
"bin": {
"phala": "./dist/index.js",
"pha": "./dist/index.js"
},
"scripts": {
"build": "tsup && bun link",
"test": "bun test",
"test:e2e": "bun test test/e2e-full/",
"test:interface": "bun test test/interface-compat/",
"test:all": "bun run test:interface && bun run test:e2e",
"fmt": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"type-check": "tsc --noEmit",
"check": "bun run fmt && bun run lint && bun run type-check && bun run test"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@michaelhomer/jqjs": "^1.5.0",
"@noble/curves": "^1.8.1",
"@phala/cloud": "workspace:*",
"arg": "^5.0.2",
"chalk": "5.2.0",
"dedent": "^1.7.0",
"execa": "^7.2.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"handlebars": "^4.7.8",
"inquirer": "^12.4.2",
"ofetch": "^1.3.3",
"open": "^10.0.0",
"ora": "^6.3.1",
"prompts": "^2.4.2",
"punycode": "^2.3.1",
"semver": "^7.6.3",
"viem": "^2.7.0",
"zod": "^3.24.1"
},
"optionalDependencies": {
"@safe-global/api-kit": "^4.0.0",
"@safe-global/protocol-kit": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "latest",
"@types/dedent": "^0.7.2",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.0",
"@types/prompts": "^2.4.2",
"dotenv": "^17.2.3",
"tsup": "^8.5.1",
"type-fest": "^3.8.0",
"typescript": "^5.9.2"
}
}