-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 2.32 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
{
"name": "ruby-extensions-pack",
"displayName": "Ruby",
"description": "An opinionated and auto-configured set of extensions for Ruby development",
"license": "MIT",
"publisher": "Shopify",
"repository": {
"type": "git",
"url": "https://github.com/Shopify/vscode-shopify-ruby"
},
"icon": "icon.png",
"version": "0.1.12",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Extension Packs",
"Themes",
"Programming Languages"
],
"activationEvents": [
"onStartupFinished"
],
"extensionPack": [
"sorbet.sorbet-vscode-extension",
"Shopify.ruby-lsp"
],
"contributes": {
"themes": [
{
"label": "Spinel",
"uiTheme": "vs-dark",
"path": "./themes/dark_spinel.json"
},
{
"label": "Spinel Light",
"uiTheme": "vs",
"path": "./themes/light_spinel.json"
}
]
},
"main": "./out/extension.js",
"scripts": {
"format": "eslint '**/*.ts' --fix && prettier '**/*.{json,md,yaml,yml}' --write",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile",
"lint": "eslint '**/*.ts' && prettier '**/*.{json,md,yaml,yml}' --check",
"test": "node ./out/test/runTest.js",
"package": "vsce package --out vscode-shopify-ruby.vsix",
"vscode:prepublish": "yarn run esbuild-base --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node"
},
"resolutions": {
"node-fetch": ">= 2.6.7",
"cross-fetch": ">= 3.1.5",
"ws": ">= 7.4.6"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@shopify/eslint-plugin": "^46.0.0",
"@shopify/prettier-config": "^1.1.2",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"mocha": "^10.8.2",
"ovsx": "^0.10.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}