forked from filipesabella/speed-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.21 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.21 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
{
"name": "speed-reader",
"version": "1.6",
"license": "MIT",
"scripts": {
"start": "parcel src/test/test.html",
"start-settings": "parcel src/settings/settings.html",
"test": "mocha --require ts-node/register src/test/**/*.test.ts",
"build-settings": "parcel build src/settings/settings.html --dist-dir build/ --public-url ./ --no-source-maps",
"build-main": "parcel build src/main/speed-reader.ts --dist-dir build/ --no-source-maps",
"build-extension": "parcel build extension.ts --dist-dir build/ --no-source-maps",
"build": "yarn test && yarn build-settings && yarn build-main && yarn build-extension",
"package": "rm -rf build && yarn build && zip -r extension.zip build icons manifest.json"
},
"devDependencies": {
"@parcel/core": "^2.14.4",
"@parcel/transformer-less": "2.14.4",
"@types/node": "^22.12.0",
"@types/webextension-polyfill": "^0.12.3",
"@types/mocha": "^7.0.2",
"@types/chai": "^4.2.11",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"ts-node": "^8.8.1",
"jsdom": "^26.0.0",
"jsdom-global": "^3.0.2",
"less": "^4.2.2",
"parcel": "^2.14.4",
"typescript": "^5.7.3"
},
"dependencies": {
"webextension-polyfill": "^0.12.0"
}
}