-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.63 KB
/
package.json
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
88
89
90
91
92
93
94
{
"name": "@automattic/charts",
"version": "0.2.3-alpha",
"description": "Display charts within Automattic products.",
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/charts/#readme",
"bugs": {
"url": "https://github.com/Automattic/jetpack/labels/[JS Package] Charts"
},
"repository": {
"type": "git",
"url": "https://github.com/Automattic/jetpack.git",
"directory": "projects/js-packages/charts"
},
"license": "GPL-2.0-or-later",
"author": "Automattic",
"scripts": {
"clean": "rm -rf node_modules",
"test": "jest --config=tests/jest.config.cjs",
"test-coverage": "pnpm run test --coverage",
"storybook": "cd ../storybook && pnpm run storybook:dev",
"compile-ts": "tsc --pretty",
"build": "rollup -c",
"build:prod": "rollup -c --environment NODE_ENV:production",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:watch": "rollup -c -w",
"clean-build": "rm -rf dist/"
},
"dependencies": {
"@react-spring/web": "9.7.3",
"@visx/axis": "^3.12.0",
"@visx/event": "^3.8.0",
"@visx/grid": "^3.12.0",
"@visx/group": "^3.12.0",
"@visx/legend": "^3.12.0",
"@visx/responsive": "3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "^3.12.0",
"@visx/text": "3.12.0",
"@visx/tooltip": "^3.8.0",
"@visx/xychart": "3.12.0",
"clsx": "2.1.1",
"tslib": "2.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "12.1.0",
"@storybook/blocks": "8.4.7",
"@storybook/react": "8.4.7",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-extended": "4.0.2",
"postcss": "8.4.47",
"postcss-modules": "6.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"rollup": "3.29.5",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-postcss": "4.0.2",
"sass": "1.64.1",
"sass-embedded": "1.83.0",
"storybook": "8.4.7",
"typescript": "5.7.2"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./components/*": {
"import": "./dist/components/*/index.js",
"require": "./dist/components/*/index.cjs.js",
"types": "./dist/components/*/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": [
"*.css",
"*.scss"
]
}