-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 853 Bytes
/
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
{
"name": "DALLE2-google-extension",
"version": "1.1.0",
"main": "index.js",
"repository": "[email protected]:alonstern/DALLE2-google-extension.git",
"author": "alonstern",
"license": "MIT",
"scripts": {
"build": "yarn lint && webpack --config webpack/webpack.config.js",
"lint": "eslint --ext .ts .",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "husky install"
},
"devDependencies": {
"@types/chrome": "^0.0.203",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.29.0",
"husky": "^8.0.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"prettier": "^2.8.1"
},
"dependencies": {
"axios": "^1.2.1"
}
}