forked from readium/ts-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.57 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
66
67
68
69
70
71
72
73
{
"name": "@readium/shared",
"version": "1.2.1",
"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"
],
"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": {
"dev": "vite",
"build": "tsc && vite build",
"test": "jest",
"size": "size-limit"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "50 KB"
}
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.22.5",
"@size-limit/file": "^11.1.4",
"@types/jest": "^27.5.2",
"babel-jest": "^28.1.3",
"css-selector-generator": "^3.6.4",
"jest": "^29.7.0",
"size-limit": "^11.1.4",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^4.5.5"
}
}