-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "ariadne",
"description": "Detect deceptive design on the Web",
"version": "0.1.2",
"homepage": "https://ariadne.dantis.me",
"author": "Juris Hannah Adorna & Aurel Jared Dantis",
"repository": {
"type": "git",
"url": "https://github.com/wsg-ariadne/ariadne"
},
"scripts": {
"dev": "node dev.js",
"build:bg": "vite build --config vite.bg.config.js",
"build:content": "vite build --config vite.content.config.js",
"build:main": "vite build",
"build": "for TARGET in main bg content; do NODE_ENV=production npm run build:$TARGET; done",
"package": "npm run build && web-ext build -o -s dist -n ariadne-mv2.zip",
"dev:v3": "MANIFEST_V3=true npm run dev",
"build:v3": "MANIFEST_V3=true npm run build",
"package:v3": "npm run build:v3 && web-ext build -o -s dist-v3 -n ariadne-mv3.zip"
},
"dependencies": {
"@heroicons/vue": "^2.0.16",
"flowbite": "^1.6.5",
"html2canvas": "^1.4.1",
"pinia": "^2.0.32",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.10.0",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7",
"tree-kill": "^1.2.2",
"vite": "^4.1.4",
"web-ext": "^7.6.1",
"webextension-polyfill": "^0.10.0"
}
}