-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "react-levels-chart",
"version": "1.0.2",
"source": "src/index.tsx",
"main": "dist/index.js",
"license": "MIT",
"module": "dist/index.modern.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle --jsx React.createElement --jsxFragment React.Fragment",
"dev": "microbundle watch --jsx React.createElement --jsxFragment React.Fragment",
"start": "vite example --config vite.config.mjs",
"prepare": "npm run build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^2.1.8",
"jsdom": "^25.0.1",
"microbundle": "^0.15.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.0",
"vite": "^6.0.6",
"vitest": "^2.1.8"
}
}