-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.18 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.18 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
{
"name": "capibara",
"displayName": "Capibara",
"description": "Crowd-sourced C API hover definitions.",
"icon": "images/logo.png",
"author": {"name": "Justin Woodring", "url": "https://justinwoodring.com"},
"publisher": "Capibara",
"sponsor": {
"url": "https://github.com/sponsors/JustinWoodring"
},
"license": "MIT",
"repository": {"url": "https://github.com/Capibara-Tools/capibara-vs-code"},
"pricing": "Free",
"version": "1.1.0",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Other"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"activationEvents": [
"onCommand:capibara.fetchLatestDefinitions",
"onLanguage:c"
],
"main": "./out/main.js",
"contributes": {
"commands": [
{
"command": "capibara.fetchLatestDefinitions",
"title": "Capibara: Fetch Latest Definitions"
}
],
"configuration": {
"title": "Capibara",
"properties": {
"capibara.definitionsFileURL": {
"type": "string",
"default": "https://capibara.tools/capibara.json",
"description": "Capibara definitions file URL"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"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 ./",
"test-watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vscode/test-electron": "^2.2.0",
"esbuild": "^0.16.12",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@microsoft/vscode-file-downloader-api": "^1.0.1"
},
"extensionDependencies": [
"mindaro-dev.file-downloader"
]
}