generated from akoskm/vite-react-tailwindcss-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.89 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.89 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "runme-web-extension",
"version": "0.0.11",
"description": "A Runme browser extension to bring Runme capabilities into the browser.",
"author": "Christian Bromann <christian@stateful.com>",
"license": "Apache-2.0",
"export": "/dist/index.global.js",
"type": "module",
"private": true,
"scripts": {
"clean": "rimraf dist ./*.zip ./*.crx ./*.pem",
"dev": "vite",
"build:firefox": "NODE_ENV=production run-s clean build:js build:web build:firefox:*",
"build:firefox:manifest": "mv dist/manifestv2.json dist/manifest.json",
"build:chrome": "NODE_ENV=production run-s clean build:js build:web build:chrome:*",
"build:chrome:background": "vite build --config vite.chrome.config.ts",
"build:chrome:manifest": "rm dist/manifestv2.json",
"build:js": "vite build --config vite.content.config.ts",
"build:web": "tsc && vite build",
"bundle": "run-s bundle:*",
"bundle:clean": "run-s clean",
"bundle:firefox": "run-s bundle:firefox:*",
"bundle:firefox:build": "run-s build:firefox",
"bundle:firefox:zip": "web-ext build -s dist/ -a . && mv ./runme_web_extension-$npm_package_version.zip ./runme-firefox-v$npm_package_version.xpi",
"bundle:chrome": "run-s bundle:chrome:*",
"bundle:chrome:build": "run-s build:chrome",
"bundle:chrome:zip": "run-s build:chrome && zip -r ./runme-chrome-v$npm_package_version.zip ./dist",
"bundle:chrome:crx": "crx pack ./dist -o ./runme-chrome-v$npm_package_version.crx",
"preview": "vite preview",
"test": "run-s test:*",
"test:lint": "web-ext lint -s ./dist",
"test:component": "wdio run ./wdio.ui.conf.ts --autoCompileOpts.tsNodeOpts.project ./tsconfig.node.json",
"test:e2e": "wdio run ./wdio.e2e.conf.ts --autoCompileOpts.tsNodeOpts.project ./tsconfig.node.json",
"version": "run-s version:*",
"version:update": "npx replace ' \"version\": \"(\\d+).(\\d+).(\\d+)\"' \" \\\"version\\\": \\\"$npm_package_version\\\"\" ./public/*.json",
"version:bundle": "run-s bundle",
"version:git": "git add public"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/webextension-polyfill": "^0.10.0",
"@wdio/browser-runner": "^8.8.0",
"@wdio/cli": "^8.8.0",
"@wdio/firefox-profile-service": "^8.8.0",
"@wdio/mocha-framework": "^8.8.0",
"@wdio/spec-reporter": "^8.8.0",
"autoprefixer": "^10.4.14",
"chromedriver": "^112.0.0",
"crx": "^5.0.1",
"geckodriver": "^3.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"release-it": "^15.10.1",
"replace": "^1.2.2",
"rimraf": "^5.0.0",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.2.3",
"wdio-chromedriver-service": "^8.1.1",
"wdio-geckodriver-service": "^4.1.1",
"web-ext": "^7.6.2",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"@webcomponents/custom-elements": "^1.6.0",
"lit": "^2.7.2"
}
}