-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.86 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "git-commit-message-plus",
"displayName": "Git Commit Message Plus",
"version": "2.0.0",
"description": "Improved Git commit message editing",
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"git",
"commit"
],
"icon": "images/icon.png",
"bugs": {
"url": "https://github.com/walles/git-commit-message-plus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/walles/git-commit-message-plus"
},
"license": "MIT",
"publisher": "walles",
"main": "./dist/extension",
"browser": "./dist/web/extension.js",
"extensionKind": [
"workspace",
"ui"
],
"scripts": {
"compile": "webpack --mode development",
"check-types": "tsc --noEmit",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint src --ext ts",
"package": "webpack --mode production --devtool hidden-source-map",
"publish": "vsce publish",
"compile-tests": "tsc -p . --outDir out",
"pretest": "npm run compile && npm run compile-tests && npm run lint",
"test": "vscode-tmgrammar-test -g tests/support/diff.tmLanguage.json tests/unit/*.test && node ./out/test/runTest.js && npx @vscode/test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=./out/test/suite-web/index.js",
"vscode:prepublish": "npm run package",
"watch": "webpack --mode development --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"watch:esbuild": "node esbuild.js --watch"
},
"scriptsComment": {
"package": [
"From: https://stackoverflow.com/a/67430480/473672"
]
},
"contributes": {
"grammars": [
{
"language": "git-commit",
"scopeName": "text.git-commit",
"path": "./syntaxes/git-commit.tmLanguage.json"
}
],
"configurationDefaults": {
"[git-commit]": {
"editor.rulers": [
72
]
}
}
},
"activationEvents": [
"onLanguage:git-commit"
],
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.3.0",
"@types/vscode": "^1.103.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vscode/test-electron": "^2.5.2",
"@vscode/test-web": "^0.0.73",
"@vscode/vsce": "^3.6.0",
"esbuild": "^0.25.9",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"glob": "^11.1.0",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"vscode-tmgrammar-test": "^0.1.3",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"exclude": [
".gitignore",
"eslint.config.js",
".github",
"images/COMMIT_EDITMSG",
"images/README.md",
"images/screenshot.png"
],
"engines": {
"vscode": "^1.103.0"
}
}