-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
44 lines (44 loc) · 1.69 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"tools"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.25.17",
"@microsoft/api-extractor": "^7.47.9",
"bun-types": "^1.1.29",
"esbuild": "^0.24.0",
"html-minifier-terser": "^7.2.0",
"tools": "workspace:^",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"scripts": {
"@thi.ng": "yarn workspaces foreach -pv --all --include '@thi.ng/*'",
"@example": "yarn workspaces foreach -pv --all --include '@example/*'",
"build": "yarn @thi.ng -t run build",
"build:decl": "yarn @thi.ng -t run build:decl",
"build:esbuild": "yarn @thi.ng -t run build:esbuild",
"build:examples": "yarn @example run build",
"clean": "yarn @thi.ng run clean",
"doc": "yarn @thi.ng run doc",
"doc:ae": "yarn @thi.ng run doc:ae && scripts/collect-apis",
"doc:readme": "yarn @thi.ng run doc:readme",
"doc:examples": "bun tools/src/readme-examples.ts",
"pub": "yarn @thi.ng npm publish --tolerate-republish && yarn doc && bun tools/src/deploy-docs.ts",
"test": "yarn build:esbuild && yarn test:only",
"test:only": "(cd packages && bun test)",
"tool:cleanup": "bun tools/src/cleanup.ts",
"tool:deps": "bun tools/src/adjacency.ts",
"tool:exports": "bun tools/src/generate-export-maps.ts && bun tools/src/check-exports.ts",
"tool:imports": "bun tools/src/check-imports.ts",
"tool:prune": "bun tools/src/prune-changelogs.ts",
"tool:searchindex": "bun tools/src/build-search-index.ts",
"tool:prepare": "yarn tool:cleanup && yarn tool:imports && yarn tool:exports && yarn doc:readme && yarn tool:searchindex && yarn tool:deps",
"tool:tangle": "yarn @thi.ng run tool:tangle"
},
"packageManager": "[email protected]"
}