-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.03 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
{
"name": "@dbcode/vscode-api",
"version": "1.1.1",
"description": "DBCode API in VSCode",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"prepack": "npm run build",
"test": "echo \"No tests specified\" && exit 0",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm run build"
},
"keywords": [
"vscode",
"extension",
"database",
"dbcode",
"types",
"typescript"
],
"author": "Mike Burgh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dbcodeio/vscode-api.git"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/vscode": "^1.95.0"
},
"peerDependencies": {
"vscode": "*"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16.0.0"
}
}