-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 KB
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
55
56
57
58
59
60
{
"name": "@annotorious/plugin-arrows-react",
"version": "0.3.0",
"description": "React bindings for the Annotorious arrows plugin.",
"author": "Rainer Simon",
"license": "BSD-3-Clause",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/annotorious/plugin-arrows.git"
},
"bugs": {
"url": "https://github.com/annotorious/plugin-arrows/issues"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "echo 'Skipping tests in @annotorious/plugin-arrows-react'"
},
"module": "dist/annotorious-arrows-react.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/annotorious-arrows-react.es.js"
},
"./annotorious-arrows.css": "./dist/annotorious-arrows.css"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "5.9.3",
"vite": "^6.4.1",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4"
},
"peerDependencies": {
"@annotorious/react": "^3.7.12",
"openseadragon": ">= ^4.x || >= ^5.x",
"react": ">= ^18.x || >= ^19.x",
"react-dom": ">= ^18.x || >= ^19.x"
},
"peerDependenciesMeta": {
"openseadragon": {
"optional": true
}
},
"dependencies": {
"@annotorious/plugin-arrows": "0.3.0",
"@floating-ui/react": "^0.27.16",
"uuid": "^13.0.0"
},
"sideEffects": false
}