-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "openseadragon-fabric",
"version": "1.0.8",
"description": "A OpenSeaDragon plugin to allow the use of FabricJS overlay",
"main": "lib/openseadragon-fabric.js",
"types": "lib/openseadragon-fabric.d.ts",
"scripts": {
"clear": "rm -rf ./lib && mkdir lib",
"build": "npm run clear && tsc --declaration",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --no-notify src/openseadragon-fabric.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunoocastro/openseadragon-fabric.git"
},
"keywords": [
"openseadragon",
"osd",
"plugin",
"fabric",
"fabricjs",
"overlay"
],
"author": "Bruno Castro",
"license": "ISC",
"bugs": {
"url": "https://github.com/brunoocastro/openseadragon-fabric/issues"
},
"homepage": "https://github.com/brunoocastro/openseadragon-fabric#readme",
"devDependencies": {
"@types/fabric": "^5.3.6",
"@types/node": "^20.9.2",
"@types/openseadragon": "^3.0.10",
"fabric": "^6.4.2",
"openseadragon": "^4.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}