this repo has no description
1{
2 "name": "values",
3 "type": "module",
4 "private": true,
5 "scripts": {
6 "dev": "parcel ./index.html",
7 "build": "parcel build ./index.html",
8 "test": "bun test",
9 "deploy": "bun test && bun run build && bunx wrangler pages deploy dist",
10 "format": "bunx prettier --write .",
11 "lint": "bunx eslint .",
12 "lint:fix": "bunx eslint --fix .",
13 "prepare": "husky"
14 },
15 "devDependencies": {
16 "@happy-dom/global-registrator": "^17.4.4",
17 "@types/bun": "^1.2.8",
18 "husky": "^9.1.6",
19 "lint-staged": "^15.2.10",
20 "@eslint/js": "^9.13.0",
21 "@trivago/prettier-plugin-sort-imports": "^5",
22 "@types/eslint__js": "^9",
23 "@types/node": "^22.8.4",
24 "eslint": "^9.13.0",
25 "prettier": "^3.3.3",
26 "tsx": "^4.19.2",
27 "typescript": "^5.6.3",
28 "typescript-eslint": "^8.12.2"
29 },
30 "dependencies": {
31 "@types/lodash": "^4.17.16",
32 "lodash": "^4.17.21",
33 "parcel": "^2.14.4",
34 "wrangler": "^4.7.0"
35 },
36 "lint-staged": {
37 "*": "prettier --ignore-unknown --write --ignore-path .prettierignore"
38 }
39}