generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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": "pr-path-clip",
"version": "1.0.2",
"description": "PR PathClip is a Chrome extension that adds a copy-to-clipboard button next to file paths displayed in the GitHub Pull Requests description (default) tab.",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"clean": "rimraf dist *.zip",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"package": "npm run build && rimraf zFernand0_PR-PathClip.zip && zip -r zFernand0_PR-PathClip.zip dist"
},
"author": "zFernand0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zFernand0/chrome-extension-GH-PR-clipboard.git"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/chrome": "0.0.158",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"copy-webpack-plugin": "^9.0.1",
"glob": "^7.1.6",
"jest": "^29.5.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"ts-jest": "^29.1.0",
"ts-loader": "^8.0.0",
"typescript": "^5.0.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}