-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
112 lines (112 loc) · 2.67 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@phala/fn",
"version": "0.2.22",
"description": "Phat Function CLI toolkit",
"bin": {
"phat-fn": "bin/run"
},
"homepage": "https://github.com/Phala-Network/phat-function-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Phala-Network/phat-function-cli.git"
},
"files": [
"/bin",
"/dist",
"/tsconfig.build.json"
],
"dependencies": {
"@oclif/core": "^2",
"@phala/pink-env": "^1.0.13",
"@phala/sdk": "0.6.0-beta.14",
"@types/node-fetch": "2",
"chalk": "4",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"filesize": "^10.0.12",
"inquirer": "8",
"ora": "5",
"quickjs-emscripten": "^0.23.0",
"quickjs-emscripten-sync": "^1.5.2",
"simple-git": "^3.19.1",
"string-replace-loader": "^3.1.0",
"sync-rpc": "^1.3.6",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"undici": "^5.27.0",
"upath": "^2.0.1",
"webpack": "^5.88.2",
"webpack-merge": "^5.9.0",
"webpack-virtual-modules": "^0.5.0"
},
"devDependencies": {
"@oclif/test": "^2.4.5",
"@types/chai": "^4",
"@types/inquirer": "8",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.41",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"chai": "^4",
"eslint": "^7.32.0",
"mocha": "^9",
"oclif": "^3.11.3",
"shx": "^0.3.3",
"tslib": "^2.6.2"
},
"oclif": {
"bin": "@phala/fn",
"dirname": "@phala/fn",
"commands": "./dist/commands",
"topicSeparator": " ",
"topics": {
"init": {
"description": "Create a new project from template"
},
"build": {
"description": "Build a production bundle of your JS"
},
"run": {
"description": "Run JS in QuickJS runtime"
},
"watch": {
"description": "Watch events from contract"
},
"upload": {
"description": "Upload your JS Phat Function"
},
"update": {
"description": "Update your JS Phat Function"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b && shx cp src/lib/phatjs/phatjs_bg.*.wasm dist/lib/phatjs/",
"lint": "tsc --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\""
},
"engines": {
"node": ">=18"
},
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/Phala-Network/phat-function-cli/issues"
},
"directories": {
"test": "test"
},
"keywords": [
"phat",
"contract",
"phala",
"phala",
"network",
"phat",
"function"
],
"author": "Phala Network"
}