-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (46 loc) · 1.2 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
{
"name": "commit-timer",
"displayName": "Git Last Commit Timer",
"description": "Shows a countdown timer of the last commit",
"version": "1.1.0",
"publisher": "danperks",
"private": true,
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/danperks/CommitTimer"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/git-state": "^4.1.3",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"esbuild": "^0.19.11",
"eslint": "^8.26.0",
"typescript": "^5.3.2"
},
"dependencies": {
"git-state": "^4.1.0",
"moment": "^2.30.1",
"simple-git": "^3.22.0"
}
}