-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.75 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
{
"private": true,
"name": "dotviz",
"description": "A modern, browser-native graph visualization library that reimagines Graphviz for the web",
"keywords": [
"graphviz",
"wasm",
"WebAssembly"
],
"version": "0.0.7",
"repository": {
"type": "git",
"url": "git+https://github.com/APIs-guru/dotviz.git"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"devDependencies": {
"@eslint/js": "9.36.0",
"@eslint/json": "0.13.2",
"@eslint/markdown": "7.3.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.4",
"@types/node": "24.6.1",
"@vitest/coverage-v8": "4.0.18",
"@viz-js/viz": "3.17.0",
"cspell": "9.2.1",
"eslint": "9.36.0",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unicorn": "61.0.2",
"globals": "16.4.0",
"jsdom": "27.0.0",
"prettier": "3.6.2",
"rollup": "4.52.3",
"rollup-plugin-dts": "6.2.3",
"tslib": "2.8.1",
"typedoc": "0.28.13",
"typedoc-plugin-mdn-links": "5.0.9",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"vitest": "4.0.18"
},
"scripts": {
"preversion": "bash ./scripts/check-git.sh && npm ci --ignore-scripts",
"version": "npm test",
"build:npm": "node scripts/build-npm.ts",
"test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling",
"lint": "eslint --cache --max-warnings 0 .",
"check": "tsc",
"prettier": "prettier --write --list-different .",
"prettier:check": "prettier --check .",
"check:spelling": "cspell --cache --no-progress \"**/*\"",
"testonly": "vitest run --coverage test/*.test.ts",
"docs": "typedoc types/index.d.ts"
}
}