-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.66 KB
/
package.json
File metadata and controls
54 lines (54 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
{
"name": "wdpr",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/r74tech/wdpr.git"
},
"workspaces": [
"packages/*",
"examples/*",
"examples/wdmock-cf/packages/*",
"examples/wdmock-cf/apps/*"
],
"scripts": {
"build": "bunup",
"clean": "rm -rf packages/**/dist",
"dev": "bunup --watch",
"test": "bun test",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"lint": "oxlint packages/ tests/ examples/",
"lint:fix": "oxlint --fix packages/ tests/ examples/",
"format": "oxfmt --check packages/ tests/ examples/",
"format:fix": "oxfmt packages/ tests/ examples/",
"typecheck": "tsc --noEmit && tsc --noEmit -p packages/runtime/tsconfig.json",
"release": "nx release",
"release:dry-run": "nx release --dry-run",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"docs:llms": "typedoc --options typedoc.llms.json && bun scripts/build-llms.ts",
"docs:api": "bun scripts/build-versioned-docs.ts",
"docs:api:import": "bun scripts/import-release-docs.ts",
"docs:all": "bun run docs:api && bun run docs:llms"
},
"devDependencies": {
"@nx/js": "^22.4.5",
"@r74tech/typedoc-plugin-monorepo-versions": "^1.0.1",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.11",
"@types/bun": "latest",
"bunup": "^0.16.20",
"happy-dom": "^20.3.9",
"nx": "^22.4.5",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"typedoc": "^0.28.16",
"typedoc-plugin-llms-txt": "^0.1.2",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@swc/core"
]
}