forked from locale-switcher/locale-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "locale-switcher",
"license": "MIT",
"private": true,
"homepage": "https://github.com/locale-switcher/locale-switcher/",
"scripts": {
"prepare": "shx sed -i \"s/\\*zoom/zoom/g\" node_modules/tachyons/css/tachyons.min.css",
"check": "tsc",
"locale:download": "node scripts/download-locales.mjs",
"clean": "shx rm -rf dist .parcel-cache web-ext-artifacts",
"dev": "parcel watch --target dev --no-hmr ./manifest.json",
"build": "parcel build --target prod ./manifest.json",
"pack": "web-ext build -s dist/prod --overwrite-dest",
"dist": "run-s check clean build pack"
},
"targets": {
"dev": {
"sourceMap": {
"inline": true,
"inlineSources": true
}
},
"prod": {
"sourceMap": false
}
},
"dependencies": {
"fuse.js": "^6.6.2",
"locale-emoji": "^0.3.0",
"sortablejs": "^1.15.0",
"tachyons": "^4.12.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@parcel/config-webextension": "^2.8.2",
"@parcel/core": "^2.8.2",
"@types/webextension-polyfill": "^0.8.3",
"axios": "^1.2.1",
"jsdom": "^20.0.3",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.2",
"parcel-transformer-svelte": "^1.2.3",
"postcss": "^8.4.20",
"shx": "^0.3.4",
"svelte": "^3.55.0",
"svelte-preprocess": "^4.10.7",
"typescript": "^4.9.4",
"web-ext": "^7.4.0"
}
}