-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1007 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1007 Bytes
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
{
"name": "@oracle/sql-developer-api",
"version": "25.2.0",
"description": "Provides Typescript type definitions for the API exposed by Oracle SQL Developer Extension for VSCode",
"main": "",
"license": "UPL-1.0",
"private": false,
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/oracle/sql-developer-vscode.git",
"directory": "extension-api"
},
"keywords": [
"Oracle",
"SQL",
"SQL Developer",
"Database",
"VSCode",
"API"
],
"scripts": {
"update:version": "./scripts/update-version",
"licensify": "./scripts/licensify",
"bundle": "dts-bundle-generator --config dts-config.js",
"build": "yarn bundle && yarn licensify && yarn update:version && ./scripts/patch-generated"
},
"devDependencies": {
"dts-bundle-generator": "^9.5.1",
"ts-morph": "^26.0.0",
"typescript": "^5.7.3"
}
}