-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) 路 1.93 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) 路 1.93 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
{
"name": "@readium/speech",
"version": "0.7.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",
"test:voices": "npm run build && NODE_NO_WARNINGS=1 ava test/WebSpeechVoiceManager/*.test.ts",
"test:gnd": "NODE_NO_WARNINGS=1 ava test/gnd/*.test.ts",
"test:utterances": "NODE_NO_WARNINGS=1 ava test/utterances/*.test.ts",
"generate-metadata": "node scripts/generate-metadata.js",
"generate-fixtures-manifest": "node scripts/build-fixtures-manifest.js",
"generate-utterances": "npm run build && node scripts/generate-utterances.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",
"linkedom": "^0.18.13",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^7.1.9",
"vite-plugin-dts": "^4.5.4"
},
"dependencies": {
"@readium/decorator": "^1.0.1",
"@readium/shared": "^2.3.1",
"string-strip-html": "^13.4.23"
}
}