-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.09 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.09 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
{
"name": "glitch-snail",
"version": "2.20.0",
"description": "CLI for Glitch",
"keywords": [
"glitch",
"cli"
],
"homepage": "https://snail-cli.glitch.me/",
"license": "MIT",
"files": [
"/src"
],
"bin": {
"snail": "./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wh0/snail-cli.git"
},
"scripts": {
"start": "cd vanity && python3 -m http.server $PORT"
},
"dependencies": {
"commander": "^7.2.0",
"form-data": "^4.0.2",
"node-fetch": "^2.7.0",
"socket.io-client": "^2.5.0",
"ws": "~7.5.10"
},
"devDependencies": {
"@types/node": "^22.15.18",
"@types/node-fetch": "^2.6.12",
"@types/socket.io-client": "^1.4.36",
"@types/ws": "^7.4.7",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"terser": "^5.39.2",
"typescript": "^4.9.5",
"webpack": "^5.99.8",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">=10"
},
"glitch": {
"projectType": "generated_static",
"buildDirectory": "vanity"
}
}