-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.56 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.56 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
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
83
84
85
86
87
{
"name": "dragology",
"version": "0.1.5",
"type": "module",
"main": "dist-lib/index.js",
"types": "dist-lib/index.d.ts",
"files": [
"dist-lib"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"clean": "rm -rf dist-lib dist-demo",
"build:lib": "bash build-lib.sh",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.app.json && tsc --noEmit -p tsconfig.node.json",
"prettier": "prettier --write src",
"lint": "eslint src",
"check": "npm run typecheck && npm test && npm run lint",
"prepublishOnly": "npm run clean && npm run build:lib",
"release": "npm run check && npm version patch && npm publish"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"dependencies": {
"@joshuahhh/pretty-print": "^0.0.7",
"d3-color": "^3.1.0",
"d3-delaunay": "^6.0.4",
"d3-ease": "^3.0.1",
"d3-interpolate": "^3.0.1",
"d3-interpolate-path": "^2.3.0",
"immer": "^11.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/standalone": "^7.28.5",
"@eslint/js": "^9.39.1",
"@mdx-js/mdx": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.1.17",
"@testing-library/react": "^16.3.2",
"@types/babel__standalone": "^7.1.9",
"@types/d3-delaunay": "^6.0.4",
"@types/d3-ease": "^3.0.2",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-interpolate-path": "^2.0.3",
"@types/d3-shape": "^3.1.7",
"@types/dagre": "^0.7.53",
"@types/lodash": "^4.17.20",
"@types/node": "^25.2.3",
"@types/parse-gitignore": "^1.0.2",
"@types/prettier": "^2.7.3",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"bluefish-js": "^0.0.38",
"d3-shape": "^3.2.0",
"dagre": "^0.8.5",
"deep-freeze-es6": "^5.0.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"html-react-parser": "^5.2.10",
"jsdom": "^29.0.0",
"json-diff-ts": "^4.8.2",
"monaco-editor": "^0.55.1",
"parse-gitignore": "^2.0.0",
"peggy": "^3.0.2",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router-dom": "^7.9.5",
"tailwindcss": "^4.1.17",
"ts-pegjs": "^4.2.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.46.4",
"vite": "^7.3.1",
"vite-plugin-qrcode": "^0.3.0",
"vitest": "^4.0.6"
}
}