-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.04 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
{
"name": "drhgsim",
"version": "0.1.1",
"displayName": "dR Hunger Games Simulator",
"description": "Web extension for simulation of brawls between devRant users, inspired by Hunger Games.",
"private": true,
"license": "MIT",
"author": "Rodion Borisov <[email protected]>",
"type": "module",
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"dev": "vite",
"serve:firefox": "dotenv -c -- web-ext run",
"serve:chrome": "dotenv -c -- web-ext run -t chromium",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"dependencies": {
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@samrum/vite-plugin-web-extension": "^1.0.0",
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.41",
"@tsconfig/svelte": "^2.0.1",
"@types/webextension-polyfill": "^0.8.3",
"dotenv-cli": "^5.1.0",
"svelte": "^3.44.0",
"svelte-check": "^2.2.7",
"svelte-preprocess": "^4.9.8",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"vite": "~2.9.0",
"web-ext": "^6.6.0"
}
}