-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "chartjs-react",
"version": "4.3.0",
"description": "TypeScript React wrapper for Chart.js with hooks and tooltip",
"private": false,
"author": "Sergey Khomushin <xr0master@gmail.com>",
"license": "MIT",
"main": "es/ReactChart.js",
"types": "es/ReactChart.d.ts",
"keywords": [
"chartjs react",
"chartjs hooks",
"chartjs react typescript",
"chartjs tooltip"
],
"repository": {
"type": "git",
"url": "https://github.com/xr0master/chartjs-react.git"
},
"scripts": {
"_build-ts": "tsc --project ./tsconfig.build.json",
"_clean": "rm -rf ./es",
"_eslint": "eslint 'src/**/*.{ts,tsx}'",
"build": "npm run _clean && npm run _eslint && npm run _build-ts",
"test": "jest --coverage",
"lint": "tsc --noEmit && npm run _eslint"
},
"peerDependencies": {
"chart.js": ">=3.9.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@happy-dom/jest-environment": "^15.11.7",
"@stylistic/eslint-plugin": "^2.12.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"chart.js": "^4.4.7",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"bugs": {
"url": "https://github.com/xr0master/chartjs-react/issues"
},
"homepage": "https://github.com/xr0master/chartjs-react#readme"
}