-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "vs-code-gen-mongo-id",
"displayName": "MongoDB ID Generator",
"description": "Generates MongoDB IDs",
"version": "1.0.1",
"publisher": "JonathanLewis",
"repository": "https://github.com/jon-lewis/vs-code-gen-mongo-id",
"license": "wtfpl",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vs-code-gen-mongo-id.generateIdAtCursor"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "vs-code-gen-mongo-id.generateIdAtCursor",
"title": "Gen MongoDB ID: Replace Selected Text with MongoDB ObjectId"
}
]
},
"scripts": {
"publish:ext": "vsce publish",
"build:ext": "vsce package",
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^12.11.7",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.15.0",
"glob": "^7.1.6",
"typescript": "^4.1.2"
},
"dependencies": {
"ts-loader": "^8.0.12",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
}
}