-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 949 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 949 Bytes
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
{
"name": "retort-plugins",
"private": true,
"description": "IDE plugins for the Retort framework — VSCode and PyCharm",
"repository": {
"type": "git",
"url": "https://github.com/phoenixvc/retort-plugins.git"
},
"license": "MIT",
"workspaces": [
"packages/router",
"packages/ui",
"packages/state-watcher",
"extensions/vscode"
],
"scripts": {
"build": "npm run build -w @retort-plugins/router && npm run build -w @retort-plugins/ui && npm run build -w @retort-plugins/state-watcher && npm run build -w @retort-plugins/vscode",
"build:router": "npm run build -w @retort-plugins/router",
"build:ui": "npm run build -w @retort-plugins/ui",
"build:watcher": "npm run build -w @retort-plugins/state-watcher",
"build:vscode": "npm run build -w @retort-plugins/vscode",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present"
}
}