-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 970 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
27
28
29
{
"name": "meemo",
"version": "0.0.3",
"displayName": "Meemo",
"author": "aetherclouds",
"description": "Language learning swiss army knife",
"license": "MIT",
"type": "module",
"scripts": {
"build:ffox": "export TARGET_BROWSER=firefox; vite build",
"build:chrm": "export TARGET_BROWSER=chrome; vite build",
"watch:ffox": "export TARGET_BROWSER=firefox; vite build --watch --mode development",
"watch:chrm": "export TARGET_BROWSER=chrome; vite build --watch --mode development",
"dev:chrm": "export TARGET_BROWSER=chrome; vite"
},
"devDependencies": {
"@samrum/vite-plugin-web-extension": "^5.1.1",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/chrome": "^0.0.254",
"@types/webextension-polyfill": "^0.10.7",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.2",
"svelte": "^4.2.19",
"svelte-preprocess": "^5.1.4",
"tailwindcss": "^3.4.17",
"vite": "^5.4.14",
"web-ext": "^7.12.0"
}
}