-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
{
"name": "nyan",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "wrangler dev",
"build": "esbuild src/index.ts --format=esm --platform=neutral --bundle --minify --sourcemap --main-fields=browser,module,main --outfile=dist/index.mjs",
"preview": "wrangler preview --watch",
"deploy": "wrangler deploy --minify",
"prettier": "prettier --check --ignore-path .gitignore ./",
"prettier:fix": "prettier --write --ignore-unknown --ignore-path .gitignore ./**",
"prepare": "simple-git-hooks",
"test": "echo \"Error: no test specified\" && exit 1"
},
"simple-git-hooks": {
"pre-commit": "pnpm run prettier:fix"
},
"keywords": [],
"author": "Mikka (@cvyl)",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20240620.0",
"@types/node": "^20.14.8",
"esbuild": "^0.21.5",
"itty-router": "^5.0.17",
"lint-staged": "^15.2.7",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.2",
"wrangler": "^3.61.0"
},
"engines": {
"node": ">=18",
"npm": ">=8"
}
}