-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 1.22 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
{
"name": "readium-speech",
"version": "1.0.0",
"description": "Readium Speech is a TypeScript library for implementing a read aloud feature with Web technologies. It follows [best practices](https://github.com/HadrienGardeur/read-aloud-best-practices) gathered through interviews with members of the digital publishing industry.",
"main": "build/cjs/voices.js",
"module": "build/mjs/voices.js",
"scripts": {
"test": "tsc -p tsconfig-test.json && ava build/test/test/**/*.test.js",
"clean": "rimraf ./build",
"types": "tsc -p tsconfig-types.json",
"build": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-mjs.json && npm run types && cpy package.build.cjs.json ./build/cjs --rename=package.json && cpy package.build.mjs.json ./build/mjs --rename=package.json && cpy package.build.json ./build --rename=package.json",
"start": "node build/index.js",
"extract-json-data": "node script/extract-json.mjs",
"serve": "http-server ./",
"watch": "tsc -w"
},
"author": "",
"license": "BSD-3-Clause",
"type": "module",
"devDependencies": {
"@ava/typescript": "^5.0.0",
"ava": "^6.1.3",
"cpy-cli": "^5.0.0",
"http-server": "^14.1.1",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
}
}