-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "chrome-extension-stater-typescript",
"version": "1.0.0",
"description": "Chrome Extension Typescript starter",
"scripts": {
"start": "webpack --watch --config webpack.dev.ts",
"build": "webpack --config webpack.prod.ts && npm run copy",
"copy": "copyfiles icons/** media/** dist/",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@tsconfig/recommended": "^1.0.6",
"@types/chrome": "^0.0.268",
"@types/eslint__js": "^8.42.3",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"prettier": "3.3.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"copyfiles": "^2.4.1"
},
"keywords": [
"chrome-extention-stater",
"extension",
"chrome-extension"
],
"author": "Kunchok Tashi",
"license": "MIT"
}