-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.02 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.02 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
{
"name": "ruby-environments",
"displayName": "Ruby environments",
"description": "Ruby environment management",
"version": "0.0.1",
"publisher": "Shopify",
"repository": {
"type": "git",
"url": "https://github.com/Shopify/ruby-environments.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.102.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "yarn run check-types && yarn run lint && node esbuild.js && yarn run build:types",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist",
"package": "yarn run check-types && yarn run lint && node esbuild.js --production && yarn run build:types",
"package_release": "vsce package --out ruby-environments.vsix",
"package_prerelease": "vsce package --pre-release --out ruby-environments.vsix",
"npm:publish": "cd npm && npm publish --access public",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"check-types": "tsc --noEmit",
"format": "eslint . --fix && prettier '**/*.{ts,json,md,yaml,yml}' --write",
"lint": "eslint . && prettier '**/*.{ts,json,md,yaml,yml}' --check",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.102.0",
"@eslint/js": "^9.32.0",
"eslint": "^9.30.1",
"typescript-eslint": "^8.38.0",
"eslint-plugin-prettier": "^5.5.3",
"prettier": "^3.6.2",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.6.0",
"esbuild": "^0.25.3",
"npm-run-all": "^4.1.5",
"ovsx": "^0.10.5",
"typescript": "^5.8.3"
}
}