-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 984 Bytes
/
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
{
"name": "mutableai-cli",
"version": "1.0.12",
"main": "./build/cli.js",
"bin": {
"mutableai": "./build/cli.js",
"mutable.ai": "./build/cli.js"
},
"author": "Ken Liao <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"format": "prettier --write .",
"start": "npm run build && npm install -g ."
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.6",
"@types/node": "^20.3.1",
"nodemon": "^2.0.22",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@supabase/supabase-js": "^2.22.0",
"assert": "^2.0.0",
"axios": "^1.4.0",
"boxen": "4.0",
"chalk": "2.4",
"clear": "^0.1.0",
"dotenv": "^16.3.1",
"figlet": "^1.6.0",
"path": "^0.12.7",
"ws": "^8.14.2"
}
}