-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
65 lines (65 loc) · 1.89 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
{
"name": "timestamp-hover",
"displayName": "Timestamp Hover",
"description": "Display the date and time of a timestamp.",
"icon": "images/icon.png",
"version": "1.0.3",
"private": true,
"publisher": "streetsidesoftware",
"license": "GPL-3.0-or-later",
"type": "commonjs",
"engines": {
"vscode": "^1.67.0"
},
"sponsor": {
"url": "https://github.com/sponsors/streetsidesoftware"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"qna": "marketplace",
"main": "./out/extension.js",
"browser": "./out/extension.js",
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {},
"vsce": {
"baseImagesUrl": "https://raw.githubusercontent.com/streetsidesoftware/vscode-cspell-dict-extensions/refs/heads/main/extensions/timestamp-hover/",
"baseContentUrl": "https://raw.githubusercontent.com/streetsidesoftware/vscode-cspell-dict-extensions/refs/heads/main/extensions/timestamp-hover/"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/vscode-cspell-dict-extensions",
"directory": "extensions/timestamp-hover"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/vscode-cspell-dict-extensions/issues"
},
"scripts": {
"clean": "rimraf out *.vsix",
"clean-build": "npm run clean && npm run build",
"prepublishOnly": "echo prepublishOnly",
"publish-extension": "vsce publish",
"pack-extension": "vsce package",
"vscode:prepublish": "npm run build",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test:cspell": "cspell .",
"test:vscode": "echo OK",
"test": "npm run test:cspell && npm run test:vscode"
},
"dependencies": {},
"author": "Street Side Software <[email protected]>",
"contributors": []
}