-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
125 lines (125 loc) · 3.64 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "vscode-scss-formatter",
"displayName": "SCSS Formatter",
"description": "%scssFormatter.description%",
"version": "3.0.0",
"author": "sibiraj-s",
"licence": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/sibiraj-s/vscode-scss-formatter.git"
},
"bugs": "https://github.com/sibiraj-s/vscode-scss-formatter/issues",
"homepage": "https://marketplace.visualstudio.com/items?itemName=sibiraj-s.vscode-scss-formatter",
"engines": {
"node": ">=18.0.0",
"vscode": "^1.95.0"
},
"scripts": {
"deploy": "vsce publish",
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"compile-tests-web": "tsc -p tsconfig-test-web.json --outDir dist/web",
"watch-tests-web": "tsc -p tsconfig-test-web.json -w --outDir dist/web",
"test-web": "node ./dist/web/test/runTest-web.js",
"test": "node ./out/test/runTest.js",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. test-workspace",
"lint": "eslint . --ext js,ts --ignore-path .gitignore",
"prepare": "is-ci || husky install"
},
"dependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.7",
"@types/vscode": "^1.95.0",
"@types/webpack-env": "^1.18.5",
"@vscode/test-electron": "^2.4.1",
"@vscode/test-web": "^0.0.63",
"assert": "^2.1.0",
"eslint": "^9.14.0",
"eslint-config-pegasus": "^6.0.1",
"fast-glob": "^3.3.2",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"picocolors": "^1.1.1",
"process": "^0.11.10",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"@vscode/vsce": "^3.2.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"publisher": "sibiraj-s",
"icon": "assets/sass.png",
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:css",
"onLanguage:scss"
],
"main": "./dist/extension.js",
"browser": "./dist/web/extension.js",
"capabilities": {
"virtualWorkspaces": true,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "scssFormatter.showOutput",
"title": "%scssFormatter.commands.showOutput.title%",
"category": "SCSS Formatter"
},
{
"command": "scssFormatter.clearOutput",
"title": "%scssFormatter.commands.clearOutput.title%",
"category": "SCSS Formatter"
}
],
"configuration": [
{
"type": "object",
"title": "SCSS Formatter",
"properties": {
"scssFormatter.printWidth": {
"type": "number",
"default": 120,
"description": "%scssFormatter.config.printWidth.description%"
},
"scssFormatter.singleQuote": {
"type": "boolean",
"default": false,
"description": "%scssFormatter.config.singleQuote.description%"
},
"scssFormatter.trailingComma": {
"type": "string",
"default": "es5",
"enum": [
"es5",
"none",
"all"
],
"description": "%scssFormatter.config.trailingComma.description%"
}
}
}
]
},
"sponsor": {
"url": "https://github.com/sponsors/sibiraj-s"
}
}