-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "@annotorious/formats",
"version": "1.0.0",
"description": "Additional data and annotation format parsers 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-formats.git"
},
"bugs": {
"url": "https://github.com/annotorious/annotorious-formats/issues"
},
"scripts": {
"build": "vite build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"main": "./dist/annotorious-formats.js",
"module": "./dist/annotorious-formats.es.js",
"types": "./dist/annotorious-formats.d.ts",
"devDependencies": {
"@types/node": "^22.5.4",
"@types/uuid": "^10.0.0",
"jsdom": "^25.0.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-dts": "4.1.1",
"vitest": "^2.0.5"
},
"dependencies": {
"@annotorious/annotorious": "^3.0.5",
"uuid": "^10.0.0"
}
}