forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.72 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
45
{
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/*",
"tools"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.22.4",
"@microsoft/api-extractor": "^7.34.8",
"@types/node": "^20.1.0",
"esbuild": "^0.17.18",
"html-minifier-terser": "^7.2.0",
"rimraf": "^5.0.0",
"tools": "workspace:^",
"ts-node": "^10.9.1",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
},
"dependencies": {
"@ygoe/msgpack": "^1.0.3"
},
"scripts": {
"@thi.ng": "yarn workspaces foreach -pv --include '@thi.ng/*'",
"@example": "yarn workspaces foreach -pv --include '@example/*'",
"build": "yarn @thi.ng -t 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:stats": "yarn @thi.ng run doc:stats",
"doc:examples": "tools:node-esm tools/src/readme-examples.ts",
"examples": "yarn @example run build",
"pub": "yarn @thi.ng npm publish --tolerate-republish && yarn doc && tools:node-esm tools/src/deploy-docs.ts",
"test": "yarn build && yarn test:only",
"test:only": "yarn @thi.ng run test",
"tool:deps": "tools:node-esm tools/src/adjacency.ts",
"tool:exports": "tools:node-esm tools/src/check-exports.ts",
"tool:imports": "tools:node-esm tools/src/check-imports.ts",
"tool:prune": "tools:node-esm tools/src/prune-changelogs.ts",
"tool:searchindex": "tools:node-esm tools/src/build-search-index.ts"
},
"packageManager": "[email protected]"
}