-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.57 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.57 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "xterminator",
"version": "2.0.0",
"description": "XTerminator",
"main": "index.js",
"scripts": {
"watch": "npm run build:icons && webpack --config webpack/webpack.dev.js --env development --watch",
"watch:clean": "npm run clean && webpack --config webpack/webpack.dev.js --env development --watch",
"build": "npm run clean && npm run build:constants && webpack --config webpack/webpack.prod.js --env production",
"clean": "rimraf dist",
"build:icons": "node scripts/icon.js",
"build:constants": "npx esbuild src/constants.ts --bundle --platform=node --outfile=dist/constants.js",
"style": "prettier --write \"src/**/*.{ts,tsx}\" && eslint \"src/**/*.{ts,tsx}\" --fix",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"package": "npm run build && node scripts/package.js",
"deploy": "gh workflow run build.yml -f publish=true",
"build-only": "gh workflow run build.yml"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chibat/chrome-extension-typescript-starter.git"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@heroicons/react": "^2.2.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@types/styled-components": "^5.1.34",
"framer-motion": "^12.7.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.17",
"lit-html": "^3.3.0",
"node-tsc": "^0.0.14",
"prettier": "^3.5.3",
"rimraf": "^3.0.2 ",
"sharp": "^0.34.1",
"tsx": "^4.7.0"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.1",
"@styled/typescript-styled-plugin": "^1.0.1",
"@types/chrome": "0.0.158",
"@types/jest": "^29.5.0",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@types/web": "^0.0.231",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"archiver": "^6.0.2",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^9.0.1",
"esbuild": "^0.25.4",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"glob": "^7.1.6",
"jest": "^29.5.0",
"lit-html": "^3.3.0",
"prettier": "^3.5.3",
"rimraf": "^3.0.2 ",
"sharp": "^0.34.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"typescript-styled-plugin": "^0.18.3",
"webpack": "^5.94.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.10.0"
}
}