-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.16 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
{
"name": "lodash-string-tools",
"displayName": "Lodash String Tools",
"description": "Converts string using well-known lodash methods",
"license": "WTFPL",
"version": "1.0.4",
"publisher": "aleksei-iatsiuk",
"engines": {
"vscode": "^1.88.0"
},
"icon": "./icon.png",
"bugs": {
"url": "https://github.com/iatsiuk/lodash-string-tools/issues"
},
"categories": [
"Formatters",
"Other"
],
"keywords": [
"lodash"
],
"repository": {
"type": "git",
"url": "https://github.com/iatsiuk/lodash-string-tools.git"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Lodash String Tools",
"properties": {
"lodashStringTools.enableSortByUsage": {
"type": "boolean",
"default": false,
"description": "Enable sorting of commands by usage frequency"
}
}
},
"commands": [
{
"command": "lodash-string-tools.commands",
"title": "Lodash String Tools"
}
]
},
"scripts": {
"preesbuild-base": "rimraf dist",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"pack-extension": "vsce package"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.88.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.26.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"dependencies": {
"lodash": "^4.17.21"
}
}