-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@readium/navigator",
"version": "1.2.0",
"type": "module",
"description": "Next generation SDK for publications in Web Apps",
"author": "readium",
"repository": {
"type": "git",
"url": "git+https://github.com/readium/ts-toolkit.git",
"directory": "navigator"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/readium/ts-toolkit/issues"
},
"homepage": "https://github.com/readium/ts-toolkit",
"keywords": [
"readium",
"epub",
"webpub",
"divina",
"reflowable",
"fixed-layout",
"publication",
"ebook",
"reader",
"viewer"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./types/src/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./types/src/index.d.ts"
}
},
"files": [
"dist",
"src",
"types"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc && vite build"
},
"devDependencies": {
"@laynezh/vite-plugin-lib-assets": "^0.5.24",
"@readium/navigator-html-injectables": "workspace:1.2.0",
"@readium/shared": "workspace:1.2.0",
"@types/path-browserify": "^1.0.0",
"css-selector-generator": "^3.6.4",
"readium-css": "github:readium/readium-css",
"tslib": "^2.5.2",
"typescript": "^5.4.5",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^4.5.5"
},
"dependencies": {
"path-browserify": "^1.0.1"
}
}