-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.62 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.62 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
80
81
82
83
84
85
86
87
88
89
{
"name": "go-impl",
"displayName": "Go Impl",
"description": "Easy to implement interface for struct.",
"version": "0.2.0",
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:go",
"onCommand:go-impl.quickpick"
],
"main": "./dist/extension.js",
"l10n": "./l10n",
"contributes": {
"commands": [],
"configuration": {
"title": "Go Impl",
"properties": {
"goImpl.receiverNameLength": {
"title": "%extension.goImpl.receiverNameLength.title%",
"type": "number",
"description": "%extension.goImpl.receiverNameLength.description%",
"enum": [
1,
2
],
"default": 1
},
"goImpl.receiverType": {
"title": "%extension.goImpl.receiverType.title%",
"type": "string",
"description": "%extension.goImpl.receiverType.description%",
"enum": [
"value",
"pointer"
],
"enumDescriptions": [
"%extension.goImpl.receiverType.value.value%",
"%extension.goImpl.receiverType.value.pointer%"
],
"default": "pointer"
}
}
}
},
"icon": "icon.png",
"author": "GY <dev.youngkwok718@gmail.com>",
"publisher": "whosydd",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whosydd/go-impl"
},
"scripts": {
"vscode:package": "pnpm vsce package --no-dependencies",
"vscode:publish": "pnpm vsce publish --no-dependencies",
"vscode:prepublish": "pnpm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.78.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}