-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 4.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
{ "name": "wider"
, "displayName": "Wider - JS Code Formatter"
, "description": "Wider format for JS/TS"
, "version": "0.2.23"
, "publisher": "Redu",
"author": { "name": "Ömer Kaşdarma"
, "url": "https://github.com/kedicesur"
, "email": "[email protected]"
}
, "license": "MIT"
, "icon": "images/wider.png"
, "repository": { "type": "git"
, "url": "https://github.com/kedicesur/wider.git"
}
, "engines": { "vscode": "^1.85.0" }
, "categories": [ "Formatters" ]
, "keywords": [ "comma first"
, "formatter"
, "javascript"
, "js"
, "ternary"
, "typescript"
, "ts"
, "wider"
]
, "main": "./extension.js"
, "activationEvents": [ "onLanguage:javascript"
, "onLanguage:typescript"
, "onLanguage:json"
]
, "files": [ "*.js"
, "*.ts"
, "*.json"
]
, "contributes": { "configuration": { "title": "Wider"
, "properties": { "wider.ternaryFormatting": { "type": "boolean"
, "default": true
, "description": "Activate ternary formatting"
}
, "wider.commaFirstLayoutForJS/TS": { "type": "boolean"
, "default": true
, "description": "Activate comma-first style for JS / TS objects and parantehesised values such as arguments / sequenced expressions."
}
, "wider.commaFirstLayoutForJSON": { "type": "boolean"
, "default": false
, "description": "Activate comma-first style in .json files like package.json etc."
}
, "wider.stackedMethodChaining": { "type": "boolean"
, "default": true
, "description": "Activate stacked method chaning."
}
, "wider.deepIndentedFunctions": { "type": "boolean"
, "default": true
, "description": "Activate deep indentation for classical functions."
}
}
}
, "commands": [ { "command": "wider.commaFirstSelection"
, "title": "Wider: Selection to Comma-First"
}
]
, "menus": { "editor/context": [ { "command": "wider.commaFirstSelection"
, "when": "editorHasSelection"
, "group": "2_modification"
}
]
}
}
, "scripts": { "pretest": "npm run lint"
, "test": "vscode-test"
}
, "devDependencies": { "@types/vscode": "^1.85.0"
, "@types/mocha": "^10.0.6"
, "@types/node": "18.x"
, "typescript": "^5.3.3"
, "@vscode/test-cli": "^0.0.4"
, "@vscode/test-electron": "^2.3.8"
}
}