-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 835 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 835 Bytes
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
{
"name": "d3-sandbox",
"private": true,
"version": "1.0.0",
"description": "D3 learning sandbox (Vite + TypeScript)",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:pages": "vite build --mode github-pages",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:run": "vitest run"
},
"author": "lx",
"license": "ISC",
"dependencies": {
"d3": "^7.9.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/d3": "^7.4.3",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^7.0.0",
"vitest": "^3.2.0"
}
}