-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "@annotorious/plugin-tools",
"version": "1.0.2",
"description": "Additional drawing tools for Annotorious",
"author": "Rainer Simon",
"license": "BSD-3-Clause",
"homepage": "https://annotorious.dev",
"funding": "https://steadyhq.com/rainer-simon",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/annotorious/annotorious-plugin-tools.git"
},
"bugs": {
"url": "https://github.com/annotorious/annotorious-plugin-tools/issues"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"main": "./dist/annotorious-plugin-tools.js",
"module": "./dist/annotorious-plugin-tools.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/annotorious-plugin-tools.es.js",
"require": "./dist/annotorious-plugin-tools.js"
},
"./annotorious-plugin-tools.css": "./dist/annotorious-plugin-tools.css"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^22.7.4",
"openseadragon": "^5.0.0",
"svelte": "^4.2.19",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.2"
},
"peerDependencies": {
"@annotorious/openseadragon": "^3.0.9"
}
}