forked from DDMAL/diva.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"name": "diva.js",
"version": "7.4.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/DDMAL/diva.js.git"
},
"main": "./build/diva.js",
"module": "./build/diva.esm.js",
"types": "./build/diva-esm.d.ts",
"browser": "./build/diva.js",
"exports": {
".": {
"types": "./build/diva-esm.d.ts",
"import": "./build/diva.esm.js",
"default": "./build/diva.js"
}
},
"files": [
"build/diva.js",
"build/diva.debug.js",
"build/diva.esm.js",
"build/*.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"docs": "typedoc --options config/typedoc.json",
"docs:check": "typedoc --options config/typedoc.json --emit none",
"format": "find src -name \"*.ts\" -print0 | xargs -0 clang-format -i",
"develop": "chokidar \"src/**/*\" \"scripts/elm-esm.sh\" \"Makefile\" -c \"make build-dev\"",
"test": "elm-test-rs && yarn docs:check",
"test:browser": "playwright test",
"test:types": "tsc -p type-tests/tsconfig.json"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.15.8",
"@types/openseadragon": "^5.0.2",
"chokidar-cli": "^3.0.0",
"elm-test-rs": "^3.0.2-0",
"esbuild": "^0.28.1",
"lightningcss": "^1.31.1",
"openseadragon": "^6.0.2",
"openseadragon5": "npm:openseadragon@5.0.1",
"typedoc": "^0.28.20",
"typescript": "^5.9.3"
}
}