-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@readium/shared",
"version": "2.4.0",
"type": "module",
"description": "Shared models to be used across other Readium projects and implementations in Typescript",
"author": "readium",
"repository": {
"type": "git",
"url": "git+https://github.com/readium/ts-toolkit.git",
"directory": "shared"
},
"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",
"parser",
"tts"
],
"types": "./types/src/index.d.ts",
"exports": {
".": {
"ts-toolkit-source": "./src/index.ts",
"types": "./types/src/index.d.ts",
"import": "./dist/index.js"
},
"./html": {
"ts-toolkit-source": "./src/publication/html/index.ts",
"types": "./types/src/publication/html/index.d.ts",
"import": "./dist/publication/html/index.js"
},
"./epub": {
"ts-toolkit-source": "./src/publication/epub/index.ts",
"types": "./types/src/publication/epub/index.d.ts",
"import": "./dist/publication/epub/index.js"
},
"./opds": {
"ts-toolkit-source": "./src/publication/opds/index.ts",
"types": "./types/src/publication/opds/index.d.ts",
"import": "./dist/publication/opds/index.js"
},
"./encryption": {
"ts-toolkit-source": "./src/publication/encryption/index.ts",
"types": "./types/src/publication/encryption/index.d.ts",
"import": "./dist/publication/encryption/index.js"
}
},
"sideEffects": false,
"files": [
"dist",
"src",
"types"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite",
"clean": "rimraf types dist",
"build": "pnpm clean && tsc && vite build",
"test": "jest",
"check-locales": "node scripts/check-locales.mjs",
"update-locales": "node scripts/update-locales.mjs && node scripts/check-locales.mjs"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-typescript": "^7.28.5",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"css-selector-generator": "^3.8.0",
"jest": "^30.2.0",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}