-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.78 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
61
62
63
64
65
66
67
{
"name": "@pokepc/dataset",
"version": "6.5.1",
"homepage": "https://pokepc.github.io/dataset",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pokepc/dataset.git"
},
"files": [
"build",
"data",
"data-next",
"LICENSE",
"README.md"
],
"type": "module",
"exports": {
"./data/*": "./data/*.json",
"./data-next/*": "./data-next/*.json",
"./lib/*": {
"types": "./build/lib/*.d.mts",
"import": "./build/lib/*.mjs",
"default": "./build/lib/*.mjs"
},
"./lib-next/*": {
"types": "./build/lib-next/*.d.mts",
"import": "./build/lib-next/*.mjs",
"default": "./build/lib-next/*.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "node src/openapi/dev.ts",
"build": "pnpm build:next && tsdown && pnpm format",
"build:openapi": "node src/openapi/build.ts",
"build:pages": "pnpm build:next && node src/openapi/build.ts",
"build:next": "bun src/lib-next/_build.ts",
"generate:pokemon-prose": "bun src/upstream-adapters/pokeapi/generate-pokemon-prose.ts",
"format": "oxfmt --write .",
"format:check": "oxfmt --check",
"lint": "publint && pnpm typecheck",
"test": "vitest --run --bail 20",
"test:e2e": "node tests/smoke-tests/pkg-smoke-test-run.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"yolodb": "^1.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.9.3",
"openai": "^6.42.0",
"oxfmt": "^0.55.0",
"publint": "^0.3.21",
"transliteration": "^2.6.1",
"tsdown": "^0.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.9",
"zod-openapi": "^6.0.0"
},
"packageManager": "pnpm@11.7.0"
}