-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
26 lines (26 loc) · 1019 Bytes
/
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
{
"name": "inject-jyutping",
"version": "0.5.1",
"description": "A browser extension that adds Cantonese pronunciation (Jyutping) on Chinese characters",
"type": "module",
"scripts": {
"clear": "rimraf dist .parcel-cache",
"prestart": "npm run clear",
"start": "parcel watch manifest.json --config @parcel/config-webextension --host localhost",
"prebuild": "npm run lint && npm run clear",
"build": "parcel build manifest.json --config @parcel/config-webextension --no-source-maps --no-cache",
"postbuild": "node scripts/replace-surrogates.js && node scripts/patch-manifest.js",
"lint": "tsc -p tsconfig.json"
},
"dependencies": {
"to-jyutping": "3.1.1",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@types/webextension-polyfill": "^0.12.1",
"parcel": "^2.12.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
}
}