forked from mdaines/viz-js
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
82 lines (82 loc) · 2.13 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
{
"name": "@aduh95/viz.js",
"version": "3.7.0",
"description": "A hack to put Graphviz on the web.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./async": "./dist/render_async.cjs",
"./sync": "./dist/render_sync.cjs",
"./wasm": "./dist/render.wasm",
"./worker": {
"types": "./dist/worker.d.ts",
"node": "./dist/render.node.mjs",
"default": "./dist/render.browser.js"
}
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/aduh95/viz.js.git"
},
"keywords": [
"graphviz",
"emscripten"
],
"files": [
"dist/index.cjs",
"dist/index.mjs",
"dist/index.d.ts",
"dist/types.d.ts",
"dist/render.d.ts",
"dist/render.node.mjs",
"dist/render.browser.js",
"dist/render.wasm",
"dist/render_async.cjs",
"dist/render_async.d.ts",
"dist/render_sync.cjs",
"dist/render_sync.d.ts",
"dist/worker.d.ts",
"async/index.js",
"async/index.d.ts",
"sync/index.js",
"sync/index.d.ts",
"wasm",
"worker",
"worker.d.ts"
],
"contributors": [
"Mike Daines <[email protected]>",
"Antoine du Hamel <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aduh95/viz.js/issues"
},
"homepage": "https://github.com/aduh95/viz.js",
"packageManager": "[email protected]+sha224.8f42459cf3e9d5e6b89b7f432466d6b4017c6d948798ba16725e047f",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"prettier": "^2.0.4",
"puppeteer": "^19.0.0",
"rollup": "^2.4.0",
"semver": "^7.3.2",
"terser": "^5.2.1",
"typescript": "^5.0.2"
},
"resolutions": {
"@types/node": "patch:@types/node@npm:18.0.3#.yarn/patches/@types-node-npm-18.0.3-c2cbe1f26e.patch"
}
}