-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "wxt-queue",
"version": "0.3.17",
"module": "src/index.ts",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "bun --hot run src/dev.ts",
"generate:types": "bun run src/generate-types.ts",
"docker:build": "docker build . -t aklinker1/store-api",
"docker:run": "docker run -it 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",
"check": "check"
},
"dependencies": {
"consola": "^3.2.3",
"dataloader": "^2.2.2",
"graphql": "^16.8.0",
"linkedom": "^0.15.3",
"picocolors": "^1.0.0",
"radix3": "^1.1.2"
},
"devDependencies": {
"@aklinker1/check": "^1.2.0",
"bun-types": "latest",
"code-block-writer": "^12.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"changelog": {
"excludeAuthors": [
]
}
}