This repository was archived by the owner on Feb 8, 2025. It is now read-only.
forked from ButterDevelop/TelegramMiniAppAuthExtractor
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.44 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
{
"name": "chrome-extension-template",
"version": "1.0.0",
"description": "chrome-extension-template",
"main": "index.js",
"scripts": {
"watch": "webpack --stats-error-details --config webpack/webpack.dev.js --watch",
"build": "webpack --stats-error-details --config webpack/webpack.prod.js",
"build2": "webpack && zip -r ./dist/BOT.$npm_config_versionn.chrome.zip ./dist",
"clean": "rimraf dist",
"test": "npx jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint ./src '**/*.{js,ts}'",
"webpack": "webpack"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maanimis/chrome-extension-template.git"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/chrome": "^0.0.158",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"copy-webpack-plugin": "^9.1.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^7.2.3",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.8",
"rimraf": "^6.0.1",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^8.4.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
}
}