-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "chromets-launchpad",
"version": "1.0.0",
"description": "A Chrome Extension boilerplate with TypeScript",
"type": "module",
"scripts": {
"build": "npm run lint && webpack --config webpack.config.cjs --mode=production",
"build:dev": "npm run lint && webpack --config webpack.config.cjs --mode=development",
"watch": "webpack --config webpack.config.cjs --mode=development --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"chrome",
"extension",
"typescript",
"boilerplate"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.200",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.10.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.45",
"postcss-loader": "^8.1.1",
"tailwindcss": "^3.4.10",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}