-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 920 Bytes
/
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
{
"name": "extent-canvas",
"version": "0.0.8",
"description": "A React HTML canvas with pan, zoom and touch support",
"type": "module",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
],
"./types": [
"./dist/types.d.ts"
]
}
},
"engines": {
"node": ">=14.17"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"prepublish": "npm run clean && npm run build"
},
"author": "wishcresp",
"repository": {
"type": "git",
"url": "https://github.com/wishcresp/extent-canvas.git"
},
"bugs": {
"url": "https://github.com/wishcresp/extent-canvas/issues"
},
"licence": "MIT",
"devDependencies": {
"@types/react": "^18.0.28",
"react": "^18.2.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}