-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "venn-isomorphic",
"version": "0.0.2",
"description": "Render Euler, Venn diagrams in Node.js",
"keywords": [],
"homepage": "https://github.com/stereobooster/venn-isomorphic#readme",
"bugs": "https://github.com/stereobooster/venn-isomorphic/issues",
"repository": "stereobooster/venn-isomorphic",
"license": "MIT",
"author": "stereobooster",
"sideEffects": false,
"type": "module",
"main": "./dist/venn-isomorphic.js",
"exports": {
".": {
"default": "./dist/venn-isomorphic.js"
}
},
"files": [
"index.html",
"src",
"dist",
"!test*"
],
"scripts": {
"prepack": "tsc --build",
"pretest": "tsc --build",
"test": "c8 node --enable-source-maps dist/test.js"
},
"dependencies": {
"@upsetjs/venn.js": "^1.4.2",
"d3": "^6.0.0",
"playwright-core": "^1.0.0"
},
"devDependencies": {
"@fontsource/irish-grover": "^5.0.0",
"@types/d3": "^7.4.3",
"@types/node": "^20.0.0",
"c8": "^9.0.0",
"esbuild": "^0.20.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"prettier": "^3.0.0",
"remark-cli": "^11.0.0",
"remark-preset-remcohaszing": "^2.0.0",
"typescript": "^5.0.0"
}
}