-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
140 lines (140 loc) · 5.4 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "hpcc-js",
"version": "2.107.0",
"description": "HPCC Visualization Framework",
"private": true,
"type": "module",
"jsdelivr": "dist/index.umd.min.js",
"workspaces": [
"utils/*",
"packages/api",
"xpackages/bundle",
"packages/chart",
"packages/codemirror",
"packages/codemirror-shim",
"packages/common",
"packages/comms",
"packages/composite",
"packages/dataflow",
"packages/ddl-shim",
"packages/deck-shim",
"packages/dgrid",
"packages/dgrid-shim",
"packages/dgrid2",
"packages/eclwatch",
"packages/esbuild-plugins",
"packages/form",
"packages/graph",
"packages/html",
"packages/layout",
"packages/leaflet-shim",
"xpackages/loader",
"packages/map",
"packages/map-deck",
"packages/markdown-it-plugins",
"xpackages/marshaller",
"packages/observable-shim",
"packages/observablehq-compiler",
"packages/other",
"packages/phosphor",
"packages/phosphor-shim",
"packages/preact-shim",
"packages/react",
"xpackages/requirejs-shim",
"packages/timeline",
"packages/tree",
"packages/util",
"xcomponents/*",
"xdemos/dashy",
"xdemos/dermatology",
"xdemos/gallery",
"xdemos/h3",
"xdemos/ie11",
"xdemos/imdb",
"xdemos/quickstart/*",
"xdemos/react/*",
"xtests/*"
],
"scripts": {
"uninstall": "lerna clean && rimraf --glob packages/**/node_modules demos/**/node_modules apps/**/node_modules package-lock.json node_modules",
"clean-root": "rimraf --glob build coverage dist lib* types temp tmp *.tsbuildinfo .vitepress/dist .vitepress/cache docs/api",
"clean": "lerna run clean && npm run clean-root",
"stamp": "lerna run stamp",
"stamp-main": "node ./utils/bundle/src/stamp-main.js",
"stamp-all": "run-s stamp stamp-main",
"compile-es6": "lerna run --ignore \"@hpcc-js/test-*\" compile-es6",
"compile-es6-watch": "lerna run --no-sort --stream --ignore \"@hpcc-js/test-*\" compile-es6-watch",
"compile-umd": "lerna run --ignore \"@hpcc-js/test-*\" compile-umd",
"api-extractor": "api-extractor run --local --verbose",
"api-extractor-watch": "nodemon --watch types \"run-s api-extractor\"",
"api-documenter": "api-documenter markdown --input-folder ./temp --output-folder ./docs/api",
"api-meta": "node utils/gen-meta.js",
"copy-res": "copyfiles -u 1 \"./resources/**/*.{png,jpg,gif,ico}\" ./.vitepress/dist/resources/",
"compile-root": "tsc -p ./tsconfig.json",
"bundle-root": "node ./esbuild.js",
"build-util": "lerna run --scope \"@hpcc-js/bundle\" build",
"build-shim": "lerna run --scope \"@hpcc-js/*-shim\" build",
"build-loader": "lerna run --scope \"@hpcc-js/loader\" build",
"build-gallery": "lerna run --scope \"@hpcc-js/demo-gallery\" build",
"build-dev": "npm-run-all --parallel build-util build-shim --parallel build-loader compile-umd",
"build-test": "lerna run --scope \"@hpcc-js/test-*\" build",
"build": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/xxxx-*\" --ignore \"@hpcc-js/demo-*\" build",
"build-api": "run-s compile-root api-extractor api-documenter api-meta",
"build-vitepress": "vitepress build .",
"build-docs": "npm-run-all --serial build-vitepress --parallel bundle-root copy-res build-patch",
"build-patch": "node utils/patch-docs.mjs",
"build-all": "npm-run-all --serial build compile-umd --parallel build-gallery build-test",
"minimize": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/demo-*\" minimize",
"gen-legacy-types": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/demo-*\" gen-legacy-types",
"build-min": "run-s build minimize",
"watch": "tsc --build --watch --verbose",
"lint": "lerna run lint",
"lint-all": "lerna run --no-bail lint -- --max-warnings=0",
"lint-fix": "lerna run --no-bail lint -- --fix",
"test-browser": "vitest run --project browser",
"test-node": "vitest run --project node",
"test": "lerna run test",
"test-all": "vitest run",
"coverage": "vitest run --coverage",
"publish": "lerna publish from-package --yes",
"publish-lerna": "lerna publish from-package --yes",
"purge-jsdelivr": "node ./utils/purge-jsdelivr.js",
"dev-docs": "vitepress dev",
"serve-docs-build": "vitepress serve --port 3000 .",
"serve-vite": "vite",
"dev-start": "ws",
"update-workspaces": "lerna run --stream update",
"update-root": "npx npm-check-updates -u -t minor",
"update-root-major": "npx npm-check-updates -u",
"update": "run-p update-workspaces update-root"
},
"devDependencies": {
"@microsoft/api-documenter": "7.25.21",
"@microsoft/api-extractor": "7.47.11",
"@microsoft/api-extractor-model": "7.29.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/browser": "2.1.4",
"@vitest/coverage-v8": "2.1.4",
"eslint": "8.57.1",
"eslint-plugin-react-hooks": "4.6.2",
"lerna": "8.1.8",
"npm-check-updates": "16.14.20",
"npm-run-all": "4.1.5",
"playwright": "1.48.2",
"rimraf": "5.0.10",
"typescript": "5.6.3",
"vitepress": "1.4.2",
"vitest": "2.1.4"
},
"overrides": {
"d3-color": "3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": "HPCC Systems",
"license": "Apache-2.0",
"homepage": "https://github.com/hpcc-systems/Visualization"
}