-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 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
{
"name": "react-d3-utils",
"version": "3.1.2",
"license": "MIT",
"description": "Low-level utilities to build charts with React and D3",
"author": "Michael Zasso",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"src"
],
"scripts": {
"build": "npm run clean && npm run tsc",
"build-storybook": "storybook build",
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"dev": "storybook dev -p 6006",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"prepack": "npm run build",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"start": "npm run dev",
"test": "npm run check-types && npm run eslint && npm run prettier",
"tsc": "npm run clean && npm run tsc-build",
"tsc-build": "tsc -p tsconfig.build.json"
},
"dependencies": {
"@types/d3-scale": "^4.0.9",
"d3-scale": "^4.0.2"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@storybook/addon-docs": "^9.1.2",
"@storybook/addon-links": "^9.1.2",
"@storybook/react-vite": "^9.1.2",
"@types/react": "^19.1.10",
"@zakodium/tsconfig": "^1.0.2",
"eslint": "^9.33.0",
"eslint-config-zakodium": "^16.0.0",
"eslint-plugin-storybook": "^9.1.2",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"rimraf": "^6.0.1",
"storybook": "^9.1.2",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium-oss/react-d3-utils.git"
},
"bugs": {
"url": "https://github.com/zakodium-oss/react-d3-utils/issues"
},
"homepage": "https://github.com/zakodium-oss/react-d3-utils#readme",
"volta": {
"node": "22.9.0"
}
}