-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "@cutting/svg",
"version": "4.55.0",
"repository": {
"type": "git",
"url": "https://github.com/dagda1/cuttingedge.git"
},
"module": "dist/esm/index.js",
"type": "module",
"sideEffects": false,
"types": "dist/esm/index.d.ts",
"license": "MIT",
"dependencies": {
"@cutting/use-get-parent-size": "workspace:*",
"@cutting/util": "workspace:*",
"classnames": "^2.5.1",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@cutting/component-library": "workspace:*",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vanilla-extract/css": "^1.17.1",
"@vanilla-extract/sprinkles": "1.6.3",
"@visx/scale": "^3.12.0",
"d3-scale": "4.0.2",
"@cutting/assert": "workspace:*",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"peerDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
},
"scripts": {
"build": "NODE_ENV=production devtools rollup",
"lint": "eslint ./src/**/*.{ts,tsx} --fix",
"start": "pnpm vite --host --port 9000 -l=info --clearScreen=false",
"test": "NODE_ENV=test vitest",
"test:ci": "CI=true pnpm test"
},
"volta": {
"extends": "../../package.json"
},
"exports": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js"
}
}