-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.4 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
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
{
"name": "insert-multiple-rows",
"displayName": "Insert Multiple Rows",
"description": "Insert sequential number / bit-field / character to multi-cursor rows.",
"version": "2.2.3",
"engines": {
"vscode": "^1.29.0"
},
"publisher": "yo-C-ta",
"license": "see LICENSE",
"categories": [
"Other"
],
"homepage": "https://github.com/yo-C-ta/insert-multiple-rows/blob/master/README.md",
"bugs": {
"url": "https://github.com/yo-C-ta/insert-multiple-rows/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yo-C-ta/insert-multiple-rows.git"
},
"keywords": [
"multi-cursor",
"multiple-cursors",
"insert",
"sequence",
"enum"
],
"icon": "images/icon.png",
"activationEvents": [
"onCommand:extension.insDecMulrows",
"onCommand:extension.insBitFldMulrows",
"onCommand:extension.insCharMulrows"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.insDecMulrows",
"title": "Insert decimal to multiple rows"
},
{
"command": "extension.insBitFldMulrows",
"title": "Insert bitfield to multiple rows"
},
{
"command": "extension.insCharMulrows",
"title": "Insert character to multiple rows"
}
],
"configuration": {
"title": "Insert Multiple Rows Configuration",
"properties": {
"insertDecimalToMultipleRows.paddingChar": {
"type": "string",
"default": "0",
"description": "Padding character configuration for decimal insertion"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"watch": "npm run esbuild-base -- --sourcemap --watch",
"lint": "eslint src --ext ts",
"pretest": "npm run esbuild && npm run lint",
"test-compile": "tsc -p ./",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"esbuild": "^0.14.14",
"eslint": "^8.7.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/vscode": "^1.63.1",
"vscode-test": "^1.6.1"
}
}