-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"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.2.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^3.0.7",
"jsdom": "^26.0.0",
"microbundle": "^0.15.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.2",
"vite": "^6.0.6",
"vitest": "^3.0.7"
}
}