This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
102 lines (102 loc) · 2.63 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
{
"name": "replit",
"displayName": "replit",
"description": "VS Code extension for connecting to repls",
"icon": "images/replit-vs-code-logo.png",
"version": "0.0.3",
"publisher": "masad-frost",
"repository": "https://github.com/replit/replit-vscode",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onFileSystem:replit",
"onCommand:replit.openrepl",
"onCommand:replit.apikey"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "replit.openrepl",
"title": "Open a repl",
"category": "Replit"
},
{
"command": "replit.shell",
"title": "Open a shell for a repl",
"category": "Replit"
},
{
"command": "replit.apikey",
"title": "Add or change API key",
"category": "Replit"
}
],
"menus": {
"commandPalette": [
{
"command": "replit.shell",
"when": "workbenchState == workspace"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run lint && npm run tscc && npm run build",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"lint": "eslint ./src --quiet",
"tscc": "tsc -p ./ --noEmit",
"test": "echo \"no teste :(\""
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 100,
"bracketSpacing": true,
"arrowParens": "always"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/lodash.debounce": "^4.0.6",
"@types/mocha": "^8.0.4",
"@types/node": "^12.19.12",
"@types/node-fetch": "^2.5.7",
"@types/vscode": "^1.52.0",
"@types/websocket": "^1.0.1",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"prettier": "^2.2.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.2",
"vscode-test": "^1.4.1",
"webpack": "^5.12.2",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"@replit/crosis": "^6.0.4",
"@replit/protocol": "^0.2.16",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"lodash.debounce": "^4.0.8",
"node-fetch": "^2.6.1",
"ws": "^7.4.2"
}
}