-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 935 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 935 Bytes
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
{
"name": "cool-chart",
"version": "3.0.2",
"private": false,
"main": "./dist/app/page.js",
"scripts": {
"dev": "next dev",
"build": "npm run copy-css && tsc",
"copy-css": "cpy 'src/**/*.module.css' dist/",
"start": "next start",
"lint": "next lint"
},
"description": "A radar chart component for use with React.js and Next.js. Customize size, color and points of data. Works for 3 to 8 attributes.",
"repository": {
"type": "git",
"url": "git+https://github.com/jgddesigns/cool_chart.git"
},
"keywords": [
"charts",
"radar",
"data"
],
"author": "Jason Dunn",
"license": "MIT",
"dependencies": {
"next": "^14.2.25",
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-loader": "^9.2.1",
"cpy-cli": "^5.0.0",
"typescript": "^5"
}
}