-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.26 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
39
40
{
"name": "prompt-hist",
"version": "0.1.0",
"description": "Prompt History with Arrow Keys for ChatGPT.",
"scripts": {
"watch": "rm -rf dist/* && webpack --watch --config webpack.config.js --mode=development",
"build": "rm -rf dist/* && webpack --config webpack.config.js --mode=production",
"clean": "rimraf dist",
"test": "npx jest",
"prettier": "prettier --write \"src/**/*.{ts,js}\""
},
"author": "Yaozhi Wang",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/yaozhiwang/prompt-hist.git"
},
"dependencies": {},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/chrome": "0.0.212",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"glob": "^8.1.0",
"prettier": "^2.8.4",
"ts-loader": "^9.4.2",
"typescript": "*",
"webpack": "^5.61.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.0.0"
}
}