-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.01 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
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
{
"name": "aigcommit",
"displayName": "aigcommit",
"description": "generate commit message according to your changes",
"version": "0.1.0",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"repository": "https://github.com/lishoulong/aigcommit",
"main": "./out/extension.js",
"publisher": "libra",
"contributes": {
"commands": [
{
"command": "gen-commit.generateCommitMessage",
"title": "generateCommitMessage"
}
],
"configuration": {
"title": "aigcommit",
"properties": {
"aigcommit.apiKey": {
"type": "string",
"default": "",
"description": "API key for your extension."
}
}
}
},
"scripts": {
"type": "tsc -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/tests/runTest.js",
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"build": "npm run -S esbuild-base -- --sourcemap",
"watch": "npm run -S esbuild-base -- --sourcemap --watch"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/hogan.js": "^3.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vscode/test-electron": "^2.3.0",
"esbuild": "^0.16.11",
"eslint": "^8.39.0",
"glob": "^10.2.5",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"diff2html": "^3.4.35",
"execa": "^7.1.1",
"fred-copy-paste": "^1.3.1",
"simple-git": "^3.18.0"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"tabWidth": 2,
"arrowParens": "avoid"
}
}