-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.74 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
{
"name": "@tiny-design/charts",
"version": "1.13.0",
"description": "Theme-aware chart components for Tiny Design, built on Recharts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wangdicoder/tiny-design.git",
"directory": "packages/charts"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./es/index.js",
"require": "./lib/index.js"
},
"./style": {
"import": "./es/style/index.js",
"require": "./lib/style/index.js"
},
"./style/*": {
"import": "./es/style/*",
"require": "./lib/style/*"
},
"./lib/*": "./lib/*",
"./es/*": "./es/*"
},
"sideEffects": [
"**/*.css",
"**/*.scss"
],
"files": [
"lib",
"es"
],
"scripts": {
"build": "npm run clean && tsdown && node scripts/build-styles.js && node scripts/inject-style-imports.js",
"clean": "rimraf lib es dist",
"test": "jest"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"recharts": ">=3.0.0"
},
"dependencies": {
"@tiny-design/tokens": "workspace:*",
"classnames": "^2.3.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^3.8.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.0",
"tsdown": "^0.21.1",
"typescript": "^5.4.0"
}
}