-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.73 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.73 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
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
{
"name": "slim-lint",
"displayName": "Slim Lint",
"description": "Slim Linter for Visual Studio Code",
"version": "0.4.3",
"publisher": "aliariff",
"license": "MIT",
"icon": "images/icon.png",
"bugs": "https://github.com/aliariff/vscode-slim-lint/issues",
"repository": {
"type": "git",
"url": "https://github.com/aliariff/vscode-slim-lint"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Linters"
],
"activationEvents": [
"onLanguage:slim"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "slim",
"aliases": [
"Slim",
"slim"
],
"extensions": [
".slim",
".html.slim"
]
}
],
"configuration": {
"type": "object",
"title": "Slim Lint Configuration",
"properties": {
"slimLint.executablePath": {
"type": "string",
"default": "slim-lint",
"description": "Path to slim-lint executable"
},
"slimLint.configurationPath": {
"type": "string",
"default": ".slim-lint.yml",
"description": "Path to slim-lint configuration file"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack --mode production && tsc -p ./",
"compile:dev": "webpack --mode development && tsc -p ./",
"compile:extension": "webpack --mode production",
"compile:tests": "tsc -p ./",
"watch": "webpack --mode development --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"pretest": "npm run compile:tests",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"package:verify": "vsce ls",
"publish:vscode": "vsce publish",
"publish:openvsx": "ovsx publish",
"verify:package": "npm run compile && npm run package:verify",
"verify:publish": "npm run verify:package && echo 'Package verification complete. Ready for publishing.'"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vscode/test-electron": "^2.3.0",
"eslint": "^8.56.0",
"glob": "^10.3.10",
"mocha": "^11.7.1",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"typescript": "^5.4.5",
"@vscode/vsce": "^3.6.0",
"ovsx": "^0.8.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"ts-loader": "^9.5.1"
},
"dependencies": {
"execa": "^9.6.0"
}
}