-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 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
{
"name": "css-unit-selector",
"displayName": "CSS Unit Selector",
"description": "Place multi-cursors or selections on CSS numeric values within selected text",
"version": "1.0.0",
"publisher": "nsnet",
"repository": { "type": "git", "url": "https://github.com/NSNet21/css-unit-selector" },
"engines": { "vscode": "^1.85.0" },
"categories": ["Other"],
"icon": "assets/icon.png",
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "cssUnitSelector.selectValues",
"title": "CSS Unit Selector: Select Values"
},
{
"command": "cssUnitSelector.selectNumbersOnly",
"title": "CSS Unit Selector: Select Numbers Only"
},
{
"command": "cssUnitSelector.filterByUnitType",
"title": "CSS Unit Selector: Filter by Unit Type"
},
{
"command": "cssUnitSelector.pasteWordList",
"title": "CSS Unit Selector: Paste Word List"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test:unit": "mocha --require ts-node/register \"test/unit/**/*.test.ts\"",
"test:integration": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^20.0.0",
"@types/mocha": "^10.0.0",
"typescript": "^5.3.0",
"@vscode/test-electron": "^2.3.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.0"
}
}