-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.33 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "restart-roblox-studio-simulator",
"displayName": "Restart Roblox Studio Simulator",
"description": "Restart the Roblox Studio simulator on code changes for faster testing.",
"version": "1.0.5",
"publisher": "tenjojeremy",
"license": "MIT",
"categories": [
"Testing"
],
"icon": "assets/images/logo.png",
"repository": {
"url": "https://github.com/jeremytenjo/restart-roblox-studio-simulator"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"engines": {
"vscode": "^1.107.0"
},
"keywords": [
"roblox",
"vscode",
"extension",
"restart",
"hot-reloading",
"simulator",
"testing"
],
"scripts": {
"dev": "npm run -S build -- --watch",
"build": "esbuild ./src/index.ts --bundle --outfile=dist/index.js --external:vscode --format=cjs --platform=node",
"deploy:patch": "npm run lint && npm run build && npm version patch && vsce publish",
"deploy:minor": "npm run lint && npm run build && npm version minor && vsce publish",
"deploy:major": "npm run lint && npm run build && npm version major && vsce publish",
"test": "echo \"no tests\"",
"prettify": "prettier --write .",
"lint": "npm run tests:lint && npm run tests:ts-types",
"tests:lint": "eslint .",
"tests:ts-types": "tsgo --noEmit"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "restartRobloxStudioSimulator.restart",
"title": "Restart Roblox Studio Simuluator",
"icon": "$(refresh)"
},
{
"command": "restartRobloxStudioSimulator.stopWebSocket",
"title": "Shutdown Restart Roblox Studio Simuluator extension",
"icon": "$(debug-stop)"
},
{
"command": "restartRobloxStudioSimulator.startWebSocket",
"title": "Activate Restart Roblox Studio Simuluator extension",
"icon": "$(debug-start)"
}
],
"keybindings": [
{
"command": "restartRobloxStudioSimulator.restart",
"key": "f2",
"when": "true"
}
],
"configuration": {
"title": "Restart Roblox Studio Simulator",
"properties": {
"restartRobloxStudioSimulator.websocketPort": {
"type": "number",
"default": 0,
"description": "(WORKSPACE SETTINGS ONLY, keep USER settings at 0 to revent overriding all vscode projects) Make sure this port matches the port set in the Roblox Studio simulator bridge plugin for your project."
},
"restartRobloxStudioSimulator.disableAutoReload": {
"type": "boolean",
"default": false,
"description": "Disable automatic restarting when files are saved"
}
}
}
},
"dependencies": {
"esbuild": "0.27.1",
"eslint-config-prettier": "10.1.8",
"ws": "8.18.3"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "22.x",
"@types/vscode": "1.107.0",
"@types/ws": "8.18.1",
"@typescript/native-preview": "7.0.0-dev.20251210.1",
"@vscode/test-cli": "0.0.12",
"@vscode/test-electron": "2.5.2",
"eslint": "9.39.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-require-js-extension": "0.0.5",
"npm-run-all": "4.1.5",
"prettier": "3.7.4",
"typescript": "5.9.3",
"typescript-eslint": "8.48.1"
}
}