-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
executable file
·70 lines (70 loc) · 1.94 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
{
"name": "d3-dag",
"version": "1.1.0",
"description": "Layout algorithms for visualizing directed acylic graphs.",
"keywords": [
"d3",
"d3-module",
"layout",
"dag",
"infovis"
],
"repository": {
"type": "git",
"url": "https://github.com/erikbrinkman/d3-dag.git"
},
"author": {
"name": "Erik Brinkman",
"email": "erik.brinkman@gmail.com"
},
"license": "MIT",
"type": "module",
"module": "dist/d3-dag.esm.min.js",
"files": [
"/dist/**/*.js",
"/dist/**/*.d.ts"
],
"scripts": {
"fmt": "prettier --write --cache '{src,test-d}/**/*.ts' '*.json' 'examples/*.json' flow.mjs eslint.config.mjs",
"lint:ts": "tsc",
"lint:es": "eslint --cache 'src/**/*.ts'",
"lint:doc": "typedoc --emit none",
"lint": "bun lint:ts && bun lint:doc && bun lint:es",
"export:ts": "tsc -p tsconfig.build.json",
"export:flow": "bun flow.mjs --cache",
"export:bundle": "bun build src/index.ts --minify --outfile dist/d3-dag.esm.min.js -e child_process",
"export": "bun export:ts && bun export:bundle",
"prepack": "bun lint && bun test --coverage && bun export",
"doc": "typedoc",
"doc:watch": "typedoc --watch"
},
"dependencies": {
"d3-array": "^3.2.4",
"javascript-lp-solver": "^0.4.24",
"quadprog": "^1.6.1",
"stringify-object": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/d3-array": "^3.2.1",
"@types/eslint__js": "^8.42.3",
"@types/stringify-object": "^4.0.5",
"eslint": "^9.17.0",
"eslint-plugin-spellcheck": "^0.0.20",
"eslint-plugin-tsdoc": "^0.4.0",
"flowgen": "^1.21.0",
"glob": "^11.0.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typedoc": "^0.27.5",
"typescript": "~5.7.2",
"typescript-eslint": "^8.18.1",
"@types/bun": "^1.1.14"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
}
}