-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
49 lines (49 loc) · 2.03 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
{
"name": "open-multiple-urls",
"version": "1.6.0",
"private": true,
"scripts": {
"build:chrome": "export TARGET=chrome && run-p type-check \"build {@}\" --",
"build:firefox": "export TARGET=firefox && run-p type-check \"build {@}\" --",
"build:all": "npm run build:chrome && npm run build:firefox",
"package:chrome": "mkdir -p dist-package && cd dist-chrome && zip -FSr ../dist-package/open-multiple-urls-$npm_package_version-chrome.zip .",
"package:firefox": "mkdir -p dist-package && cd dist-firefox && zip -FSr ../dist-package/open-multiple-urls-$npm_package_version-firefox.zip .",
"package:all": "npm run package:chrome && npm run package:firefox",
"dev:chrome": "export TARGET=chrome && run-p type-check \"watch {@}\" --",
"dev:firefox": "export TARGET=firefox && run-p type-check \"watch {@}\" --",
"test:unit": "export TARGET=firefox && vitest --coverage",
"build": "vite build --sourcemap true",
"watch": "npm run build -- --watch",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"dependencies": {
"vue": "^3.3.4",
"webextension-polyfill": "^0.9.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node18": "^18.2.2",
"@types/jsdom": "^21.1.3",
"@types/node": "^18.18.5",
"@types/webextension-polyfill": "^0.8.3",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/coverage-v8": "^0.34.6",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^22.1.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"typescript": "~5.2.0",
"vite": "^4.5.2",
"vite-plugin-static-copy": "^0.17.1",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.19"
}
}