-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "@annotorious/plugin-boolean-operations",
"version": "0.2.1",
"description": "Adds functionality to merge and subtract annotation shapes",
"author": "Rainer Simon",
"license": "BSD-3-Clause",
"homepage": "https://github.com/annotorious/plugin-boolean-operations",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/annotorious/plugin-boolean-operations.git"
},
"bugs": {
"url": "https://github.com/annotorious/plugin-boolean-operations/issues"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"devDependencies": {
"@annotorious/openseadragon": "^3.3.3",
"@annotorious/plugin-tools": "^1.0.2",
"@types/node": "^22.14.1",
"openseadragon": "^5.0.1",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"vite-plugin-dts": "^4.5.3"
},
"peerDependencies": {
"@annotorious/annotorious": "^3.3.3"
},
"dependencies": {
"polyclip-ts": "^0.16.8",
"simplify-js": "^1.2.4"
}
}