-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.89 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
{
"name": "style-sorter",
"displayName": "Style Sorter",
"version": "0.2.0",
"private": true,
"description": "Sort your styles meaningfully",
"categories": [
"Formatters"
],
"keywords": [
"css",
"vscode-extension"
],
"homepage": "https://github.com/ntedvs/style-sorter#readme",
"repository": "github:ntedvs/style-sorter",
"publisher": "NateDavis",
"main": "dist/extension.js",
"scripts": {
"build": "esbuild src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --minify --platform=node",
"package": "vsce package --no-dependencies",
"publish": "vsce publish --no-dependencies"
},
"contributes": {
"commands": [
{
"command": "style-sorter.sort",
"title": "Style Sorter: Sort"
}
],
"configuration": {
"properties": {
"style-sorter.order": {
"type": "string",
"description": "The order styles are sorted in",
"default": "alphabetical",
"enum": [
"alphabetical",
"smacss",
"concentric-css",
"frakto"
],
"enumDescriptions": [
"Order in a simple alphabetical manner",
"Order from most important, flow affecting properties, to least important properties",
"Order properties applying outside the box model, moving inward to intrinsic changes",
"Order from the outermost layout and positioning rules, moving inward through structure, style, and interaction"
]
}
}
}
},
"dependencies": {
"css-declaration-sorter": "^7.3.1",
"postcss": "^8.5.6"
},
"devDependencies": {
"@types/vscode": "^1.108.1",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.2",
"typescript": "^5.9.3"
},
"engines": {
"vscode": "^1.108.1"
},
"icon": "media/icon.png",
"trustedDependencies": [
"@vscode/vsce-sign"
]
}