-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 922 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
{
"name": "@grng/veil",
"type": "module",
"version": "1.3.6",
"description": "",
"main": "index.js",
"files": [
"out"
],
"scripts": {
"watch:veil": "tsx watch scripts/build/veil.ts --watch",
"build:veil": "tsx scripts/build/veil.ts",
"proxy": "tsx watch scripts/proxy.ts",
"watch": "concurrently --raw \"npm run proxy\" \"npm run watch:veil\"",
"prepublishOnly": "tsx scripts/prepublish.ts && tsc && tsc-alias"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.8.6",
"axios": "^1.7.7",
"concurrently": "^9.1.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"ws": "^8.18.0"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"esbuild-sass-plugin": "^3.3.1",
"hono": "^4.6.11"
}
}