forked from hpcc-systems/Visualization
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.15 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.15 KB
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
{
"name": "@hpcc-js/esbuild-plugins",
"version": "1.8.3",
"description": "Various esbuild plugins",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
},
"./sfx-wrapper": {
"types": "./types/sfx-wrapper.d.ts",
"default": "./dist/sfx-wrapper.js"
}
},
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"types/**/*"
],
"scripts": {
"clean": "rimraf ./dist ./types",
"build-types": "tsc --project tsconfig.json --emitDeclarationOnly",
"build-types-watch": "npm run build-types -- --watch",
"build-ts-dev": "esbuild ./src/index.ts --platform=node --format=esm --bundle --packages=external --sourcemap --outfile=./dist/index.js",
"build-ts": "npm run build-ts-dev -- --minify",
"build-ts-watch": "npm run build-ts-dev -- --watch",
"build-dev": "run-p build-types build-ts-dev",
"build-sfx-wrapper-dev": "esbuild ./src/sfx-wrapper.ts --platform=node --format=esm --bundle --sourcemap --outfile=./dist/sfx-wrapper.js",
"build-sfx-wrapper": "npm run build-sfx-wrapper-dev -- --minify",
"build": "run-p build-types build-ts build-sfx-wrapper",
"lint-skypack": "npx -y @skypack/package-check",
"lint-eslint": "eslint src/**/*.ts",
"lint": "run-p lint-eslint lint-skypack",
"update": "npx --yes npm-check-updates -u -t minor",
"update-major": "npx --yes npm-check-updates -u"
},
"dependencies": {
"esbuild": "0.27.3",
"esbuild-copy-static-files": "0.1.0",
"esbuild-plugin-inline-css": "0.0.1",
"esbuild-plugin-umd-wrapper": "3.0.0",
"fzstd": "0.1.1",
"vite-plugin-css-injected-by-js": "3.5.2",
"vite-plugin-static-copy": "3.2.0"
},
"devDependencies": {
"@hpcc-js/wasm-base91": "1.13.0",
"@hpcc-js/wasm-zstd": "1.12.0"
},
"keywords": [
"esbuild",
"plugins",
"WebAssembly",
"wasm",
"sfx"
],
"author": "hpcc-systems",
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/hpcc-js-wasm.git"
},
"homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
"license": "Apache-2.0"
}