-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.42 KB
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
{
"name": "@wxt-dev/queue",
"version": "0.4.10",
"type": "module",
"packageManager": "bun@1.3.12",
"scripts": {
"check": "check",
"dev": "bun run --watch scripts/dev.ts",
"build": "bun build src/main.ts --compile --minify --sourcemap --outfile .output/server",
"gen": "bun run gen:types",
"gen:types": "bun run scripts/generate-types.ts",
"docker:build": "docker build . -t aklinker1/store-api",
"docker:run": "docker run --rm -p 3000:3000 aklinker1/store-api",
"docker:build:amd": "bun docker:build --platform linux/amd64",
"docker:push": "bun docker:build --platform linux/amd64 && docker push aklinker1/store-api",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@aklinker1/zero-ioc": "^1.5.1",
"@aklinker1/zeta": "^2.2.0",
"consola": "^3.4.2",
"dataloader": "^2.2.3",
"dedent": "^1.7.2",
"graphql": "^16.13.2",
"linkedom": "^0.18.12",
"picocolors": "^1.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@aklinker1/check": "^2.4.0",
"@types/bun": "1.3.12",
"@typescript/native-preview": "^7.0.0-dev.20260411.1",
"code-block-writer": "^13.0.3",
"cspell": "^10.0.0",
"nano-staged": "^1.0.2",
"oxlint": "^1.59.0",
"prettier": "^3.8.2",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
},
"nano-staged": {
"*": "prettier --ignore-unknown --write"
}
}