-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.64 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
{
"name": "chrome-extension-template",
"version": "0.2.0",
"packageManager": "[email protected]",
"description": "Template for my future chrome extensions",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "webpack -w",
"build": "webpack",
"pkg": "tar zcvf extension-packed.tar.gz dist/ assets/ manifest.json",
"pkg-version": "jq --raw-output .version package.json",
"ext-version": "jq --raw-output .version manifest.json",
"web-copy": "EXT_VERSION=$(yarn ext-version) && mv cs-qa-extension.tar.gz \"./web/cs-qa-extension-${EXT_VERSION}.tar.gz\"",
"sync-manifest": "PKG_VERSION=$(yarn pkg-version) && jq --arg newVersion ${PKG_VERSION} '.version |= $newVersion' manifest.json > manifest.tmp.json && mv manifest.tmp.json manifest.json",
"version": "npm run sync-manifest && git add manifest.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"@testing-library/svelte": "3.1.1",
"babel-jest": "28.1.0",
"css-loader": "^6.7.1",
"jest-environment-jsdom": "28.1.0",
"jest-fetch-mock": "3.0.3",
"style-loader": "^3.3.1",
"svelte": "^3.48.0",
"svelte-jester": "2.3.2"
},
"devDependencies": {
"@tsconfig/svelte": "^1.0.13",
"@types/chrome": "0.0.200",
"@types/jest": "^27.5.2",
"@types/node": "18.11.9",
"copy-webpack-plugin": "11.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"raw-loader": "^4.0.2",
"svelte-loader": "^2.13.6",
"svelte-preprocess": "4.10.6",
"ts-jest": "28.0.2",
"ts-loader": "^9.3.0",
"typescript": "^4.1.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
}
}