forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.45 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
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"tools"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.23.12",
"@microsoft/api-extractor": "^7.38.3",
"all-contributors-cli": "^6.26.1",
"bun-types": "^1.0.18",
"esbuild": "^0.19.8",
"html-minifier-terser": "^7.2.0",
"rimraf": "^5.0.5",
"tools": "workspace:^",
"typedoc": "^0.25.4",
"typescript": "^5.3.2"
},
"scripts": {
"@thi.ng": "yarn workspaces foreach -pv --include '@thi.ng/*'",
"@example": "yarn workspaces foreach -pv --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",
"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",
"examples": "yarn @example run build",
"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": "bun test packages",
"tool:deps": "bun tools/src/adjacency.ts",
"tool:exports": "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"
},
"packageManager": "[email protected]"
}