forked from qntln/react-canvas
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
103 lines (103 loc) · 3.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-canvas",
"version": "1.8.0-react18",
"description": "High performance <canvas> rendering for React components for React 18",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/antoninkriz/react-canvas.git"
},
"scripts": {
"build": "rimraf dist && babel src --out-dir dist",
"storybook": "storybook dev -p 6006",
"prepare": "yarn build",
"prettier": "prettier {src,stories}/**/* --write",
"lint": "eslint 'src/**/*' 'src/stories/**/*'",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"canvas"
],
"maintainers": [
{
"name": "Antonín Kříž",
"url": "https://www.antoninkriz.eu"
}
],
"contributors": [
"Antonín Kříž (https://www.antoninkriz.eu)",
"Abhishek Hingnikar <[email protected]>",
"Jakub Kottnauer <[email protected]>",
"Tomáš Vojtášek <[email protected]>",
"Vita Smid <[email protected]>",
"Greg Fodor <[email protected]>",
"Christopher Berger <[email protected]>",
"Brent Vatne <[email protected]>"
],
"author": "Michael Johnston <[email protected]>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/antoninkriz/react-canvas",
"bugs": {
"url": "https://github.com/antoninkriz/react-canvas/issues"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@eslint-react/eslint-plugin": "^1.19.0",
"@eslint/js": "^9.16.0",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/react-reconciler": "^0.28.9",
"@typescript-eslint/parser": "^8.18.0",
"alea": "^1.0.1",
"babel-loader": "^9.2.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.11.1",
"globals": "^15.13.0",
"lodash.range": "^3.2.0",
"prettier": "^3.4.2",
"react": "==19.0.0",
"react-dom": "==19.0.0",
"rimraf": "^6.0.1",
"storybook": "^8.4.7",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": "==19.0.0",
"react-dom": "==19.0.0"
},
"dependencies": {
"css-layout": "^1.1.1",
"css-line-break": "^2.1.0",
"invariant": "^2.2.4",
"multi-key-cache": "^1.0.2",
"prop-types": "^15.8.1",
"react-reconciler": "==0.30.0",
"scheduler": "==0.23.0"
}
}