-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "ampere",
"version": "0.0.0",
"type": "module",
"main": "./bin/index.js",
"types": "./bin/index.d.ts",
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsc && tsx ./run.ts",
"release": "npm run build && npm publish",
"dev": "concurrently \"npm run dev:tailwind\" \"npm run dev:esbuild\" \"npm run dev:bare\"",
"dev:tailwind": "tailwindcss -i ./public/index.css -o ./public/style.css --watch --minify",
"dev:bare": "bare-server-node --port 8080",
"dev:esbuild": "tsx ./run.ts --dev",
"format": "prettier --write ."
},
"dependencies": {
"@parse5/tools": "^0.4.0",
"@tomphttp/bare-client": "2.2.0-alpha",
"acorn": "^8.11.3",
"acorn-loose": "^8.4.0",
"astring": "^1.8.6",
"estree-walker": "^3.0.3",
"idb": "^8.0.0",
"meriyah": "^4.3.9",
"parse5": "^7.1.2",
"set-cookie-parser": "^2.6.0"
},
"devDependencies": {
"@tomphttp/bare-server-node": "^2.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/crypto-js": "^4.2.1",
"@types/estree": "^1.0.5",
"@types/node": "^20.10.8",
"@types/set-cookie-parser": "^2.4.7",
"@types/web-app-manifest": "^1.0.7",
"concurrently": "^8.2.2",
"crypto-js": "^4.2.0",
"esbuild": "^0.19.11",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-server": "^0.3.0",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}