-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "@readium/speech",
"version": "0.1.0",
"description": "A TypeScript library for implementing read aloud features with Web technologies, following best practices for digital publishing.",
"author": "Readium Foundation",
"keywords": [
"readium",
"speech",
"tts",
"text-to-speech",
"read-aloud",
"accessibility"
],
"homepage": "https://readium.org/speech/",
"repository": {
"type": "git",
"url": "https://github.com/readium/speech.git"
},
"bugs": {
"url": "https://github.com/readium/speech/issues"
},
"license": "BSD-3-Clause",
"type": "module",
"main": "./build/index.cjs",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"sideEffects": false,
"files": [
"build"
],
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.cjs"
}
},
"scripts": {
"test": "npm run build && NODE_NO_WARNINGS=1 ava test/**/*.test.ts",
"generate-metadata": "node scripts/generate-metadata.js",
"clean": "rimraf ./build",
"build": "vite build",
"start": "http-server ./",
"watch": "tsc -w"
},
"devDependencies": {
"@ava/typescript": "^6.0.0",
"ava": "^6.4.0",
"http-server": "^14.1.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^7.1.9",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"string-strip-html": "^13.4.23"
}
}