-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "pokedex",
"version": "0.1.0",
"description": " The (unofficial) Codex to Poke Bridge. ",
"license": "MIT",
"type": "module",
"private": true,
"packageManager": "npm@11.16.0",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "tsc -b && npm --workspace ./apps/cli run build",
"check": "tsc -b --pretty false",
"test": "vitest run",
"lint": "eslint -f stylish",
"lint:fix": "eslint --fix -f stylish",
"format": "prettier --write .",
"format:check": "prettier --check .",
"pack:dry": "npm --workspace ./apps/cli pack --dry-run",
"release:check": "npm run format:check && npm run lint && npm run check && npm test && npm run build && npm audit --workspaces --include-workspace-root && npm run pack:dry"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/node": "^25.9.2",
"@types/ws": "^8.18.1",
"esbuild": "^0.28.0",
"eslint": "^10.4.1",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.8"
}
}