-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "chrome-extension-github",
"version": "1.0.4",
"private": true,
"description": "Chrome extension to save List of merge commits to Clipboard when creating a PR in Github",
"keywords": [
"chrome",
"extension",
"github",
"clipboard"
],
"homepage": "",
"bugs": {
"url": "https://github.com/nonoakij/chrome-extension-github/issues/"
},
"repository": {
"type": "git",
"url": "https://github.com/nonoakij/chrome-extension-github/"
},
"license": "Apache-2.0",
"author": "nonoakij",
"main": "dist/index.js",
"scripts": {
"build": "tsc && esbuild src/index.ts --bundle --minify --outfile=dist/index.js",
"format": "prettier --write src/index.ts",
"lint": "eslint src/index.ts",
"prepare": "husky",
"type-check": "tsc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.10.0",
"@typescript-eslint/parser": "8.10.0",
"esbuild": "0.24.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.6",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"volta": {
"node": "22.10.0"
}
}