-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.28 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
{
"name": "pchart",
"version": "1.0.4",
"description": "PChart",
"author": "Ermanno Scanagatta",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/ermannos/pchart"
},
"scripts": {
"start": "npm run dev",
"dev": "tsc && vite build --watch --mode=development",
"build": "tsc && vite build",
"test": "vitest run",
"preview": "vite preview"
},
"dependencies": {
"date-fns": "^3.6.0",
"vite-plugin-css-injected-by-js": "^3.5.1"
},
"peerDependencies": {
"react": "^16.x || ^17.x || ^18.x",
"react-dom": "^16.x || ^17.x || ^18.x"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@types/jest": "^29.5.12",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.3.1",
"json": "^11.0.0",
"path": "^0.12.7",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^1.6.0"
},
"files": [
"dist"
],
"main": "./dist/pchart.umd.js",
"module": "./dist/pchart.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/pchart.es.js",
"require": "./dist/pchart.umd.js"
}
}
}