-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
{
"name": "tee-cloud-cli",
"version": "0.0.1",
"description": "CLI for Interacting with Phala's TEE Cloud",
"author": {
"name": "Phala Network",
"url": "https://twitter.com/Phala-Network"
},
"repository": {
"type": "git",
"url": "https://github.com/Phala-Network/tee-cloud-cli.git"
},
"files": [
"dist"
],
"keywords": ["tee"],
"type": "module",
"exports": "./dist/index.js",
"bin": {
"teecloud": "./dist/index.js"
},
"scripts": {
"build": "tsup && bun link",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@antfu/ni": "^0.21.12",
"@babel/core": "^7.26.7",
"@babel/parser": "^7.26.7",
"@babel/plugin-transform-typescript": "^7.26.7",
"@noble/curves": "^1.8.1",
"axios": "^1.7.9",
"chalk": "5.2.0",
"commander": "^10.0.1",
"cosmiconfig": "^8.3.6",
"crypto": "^1.0.1",
"diff": "^5.2.0",
"execa": "^7.2.0",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"handlebars": "^4.7.8",
"https-proxy-agent": "^6.2.1",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"ora": "^6.3.1",
"papaparse": "^5.5.2",
"prompts": "^2.4.2",
"recast": "^0.23.9",
"ts-morph": "^18.0.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/babel__core": "^7.20.1",
"@types/diff": "^5.0.3",
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.17.7",
"@types/prompts": "^2.4.2",
"rimraf": "^4.1.3",
"tsup": "^6.6.3",
"type-fest": "^3.8.0",
"typescript": "5.6.3"
}
}