-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "arm-server",
"type": "module",
"author": "BeeeQueue <adam@haglund.dev>",
"version": "1.0.0",
"private": true,
"license": "AGPL-3.0-only",
"homepage": "https://arm.haglund.dev/docs",
"packageManager": "pnpm@10.26.2",
"engines": {
"node": "^25"
},
"simple-git-hooks": {
"pre-commit": "node_modules/.bin/nano-staged"
},
"nano-staged": {
"*.{js,cjs,mjs,ts,cts,mts,json,json5,yaml}": [
"oxfmt --no-error-on-unmatched-pattern"
]
},
"scripts": {
"build": "tsdown",
"dev": "node --env-file-if-exists=.env --watch src/index.ts",
"docs": "pnpm --package=@redocly/cli dlx redocly build-docs docs/openapi.yaml",
"docker:build": "docker build . --tag arm-server",
"docker:start": "pnpm --silent docker:build; pnpm --silent docker:run",
"docker:run": "docker run -it --rm --name arm -p 3000:3000 arm-server",
"fetch-data": "node bin/update.ts --exit",
"lint": "eslint src",
"lint:fmt": "oxfmt --check",
"start": "node dist/index.mjs",
"test": "vitest",
"typecheck": "tsgo",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "7.3.0",
"@e18e/eslint-plugin": "0.1.4",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/json-schema": "7.0.15",
"@types/node": "25.2.1",
"@typescript/native-preview": "7.0.0-dev.20260207.1",
"@vitest/coverage-v8": "4.0.18",
"db0": "0.3.4",
"eslint": "10.0.0",
"evlog": "1.5.0",
"h3": "2.0.1-rc.14",
"kysely": "0.28.11",
"kysely-db0": "0.1.0-beta.1",
"mentoss": "0.13.0",
"nano-staged": "0.9.0",
"oxfmt": "0.28.0",
"simple-git-hooks": "2.13.1",
"tsdown": "0.20.3",
"valibot": "1.2.0",
"vitest": "4.0.18",
"xior": "0.8.3"
}
}