-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "@kirkegaard/react-use-canvas",
"version": "0.2.1",
"description": "A tiny hook to render canvas",
"author": "Christian Kirkegaard <christian@lowpoly.dk>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"homepage": "https://kirkegaard.github.io/react-use-canvas",
"bugs": {
"url": "https://github.com/kirkegaard/react-use-canvas/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirkegaard/react-use-canvas.git"
},
"publishConfig": {
"@kirkegaard:registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"scripts": {
"build": "bunchee",
"dev": "bunchee --watch",
"lint": "eslint src"
},
"devDependencies": {
"bunchee": "^5.2.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.3.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"engines": {
"node": ">=16"
},
"keywords": [
"react",
"canvas",
"hook"
]
}