@hpcc-js/wasm-graphviz-cli 1.2.3 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/wasm-graphviz-cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "hpcc-js - WASM Graphviz Cli",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"types/**/*"
|
|
21
21
|
],
|
|
22
22
|
"scripts": {
|
|
23
|
-
"clean": "rimraf
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"build-dev": "run-p
|
|
30
|
-
"build": "run-p
|
|
23
|
+
"clean": "rimraf bin types .nyc_output",
|
|
24
|
+
"gen-types": "tsc --project tsconfig.json --emitDeclarationOnly",
|
|
25
|
+
"gen-types-watch": "npm run gen-types -- --watch",
|
|
26
|
+
"bundle": "npm run bundle-dev --minify",
|
|
27
|
+
"bundle-dev": "esbuild ./src/index.ts --platform=node --format=esm --bundle --packages=external --sourcemap --outfile=./bin/index.js --banner:js='#!/usr/bin/env node'",
|
|
28
|
+
"bundle-watch": "npm run bundle-dev -- --watch",
|
|
29
|
+
"build-dev": "run-p gen-types bundle-dev",
|
|
30
|
+
"build": "run-p gen-types bundle",
|
|
31
31
|
"lint-skypack": "npx -y @skypack/package-check",
|
|
32
32
|
"lint-eslint": "eslint src/**/*.ts",
|
|
33
33
|
"lint": "run-p lint-eslint",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"update-major": "npx -y npm-check-updates -u"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@hpcc-js/wasm-graphviz": "1.
|
|
39
|
+
"@hpcc-js/wasm-graphviz": "^1.6.0",
|
|
40
40
|
"yargs": "17.7.2"
|
|
41
41
|
},
|
|
42
42
|
"keywords": [
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
},
|
|
56
56
|
"homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
|
|
57
57
|
"license": "Apache-2.0",
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "4b279928d3cbcbb2cebc5c33226d15c1d6043966"
|
|
59
59
|
}
|