-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 879 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
41
42
43
44
45
{
"name": "snaptail",
"version": "0.0.5",
"description": "Run single file application in an instant.",
"type": "module",
"bin": {
"snaptail": "dist/cli.js"
},
"scripts": {
"dev": "tsc && tsc --watch",
"build": "tsc"
},
"keywords": [
"react",
"vite",
"single file",
"web app",
"nextjs"
],
"author": "Sandro Rybarik",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"detype": "^1.0.10",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "~20.10.0",
"create-vite": "^5.5.1",
"typescript": "^5.5.4",
"vite": "^5.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rybarix/snaptail.git"
},
"files": [
"cli.js",
"dist/",
"templates/"
]
}