forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.92 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
46
47
48
49
50
51
{
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.13.63",
"@microsoft/api-extractor": "^7.18.16",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/plugin-webpack": "^3.0.0",
"@types/node": "^16.11.4",
"@types/snowpack-env": "^2.3.4",
"browserslist": "^4.17.5",
"esbuild": "^0.13.9",
"gzip-size": "^6.0.0",
"html-minifier-terser": "^6.0.2",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"rollup": "2.58.0",
"rollup-plugin-cleanup": "^3.2.1",
"snowpack": "^3.8.8",
"terser": "^5.9.0",
"ts-node": "^10.4.0",
"typedoc": "^0.22.7",
"typescript": "4.4.4"
},
"dependencies": {
"@ygoe/msgpack": "^1.0.3"
},
"scripts": {
"bootstrap": "yarn install && lerna bootstrap",
"build": "yarn bootstrap && lerna run build --sort",
"build:check": "lerna run build:check",
"clean": "lerna run clean",
"doc": "lerna run doc",
"doc:ae": "lerna run doc:ae && scripts/collect-apis",
"doc:examples": "scripts/node-esm tools/src/readme-examples.ts",
"doc:readme": "lerna run doc:readme",
"doc:stats": "lerna run doc:stats",
"examples": "scripts/build-examples",
"pub": "lerna publish --registry https://registry.npmjs.org/ && yarn doc && scripts/node-esm tools/src/deploy-docs.ts",
"test": "yarn build && yarn test:only",
"test:only": "lerna run test",
"tool:deps": "scripts/node-esm tools/src/adjacency.ts",
"tool:exports": "scripts/node-esm tools/src/check-exports.ts",
"tool:imports": "scripts/node-esm tools/src/check-imports.ts",
"tool:prune": "scripts/node-esm tools/src/prune-changelogs.ts",
"tool:searchindex": "scripts/node-esm tools/src/build-search-index.ts"
}
}