-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.67 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
{
"private": true,
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"build": "turbo run build",
"start": "turbo start",
"watch": "turbo run watch",
"typecheck": "npm run typecheck --workspace=custom-ui",
"docs:install": "python3 -m pip install -r docs/requirements.txt",
"docs:build": "python3 -m mkdocs build --strict",
"docs:serve": "python3 -m mkdocs serve -a 127.0.0.1:8000",
"lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,less}'",
"format:check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md,less}'",
"prepare": "husky",
"postinstall": "node ./scripts/postinstall.js",
"clean": "turbo run clean && rimraf node_modules",
"download:plugins": "theia download:plugins --rate-limit=5 --parallel=false --ignore-errors",
"clean:all": "bash ./scripts/clean-all.sh",
"rebuild:all": "bash ./scripts/rebuild-all.sh",
"release:tag": "bash ./release-tag.sh",
"clean:all:win": "powershell -ExecutionPolicy Bypass -File .\\scripts\\clean-all.ps1",
"rebuild:all:win": "powershell -ExecutionPolicy Bypass -File .\\scripts\\rebuild-all.ps1"
},
"repository": {
"type": "git",
"url": "https://github.com/mrhunsaker/PlainScript.git"
},
"workspaces": [
"browser-app",
"custom-ui",
"electron-app"
],
"packageManager": "npm@11.0.0",
"dependencies": {
"@vscode/ripgrep": "^1.17.0"
},
"overrides": {
"@vscode/ripgrep": "^1.17.0",
"@theia/monaco-editor-core": "1.96.302"
},
"theiaPluginsDir": "plugins",
"theiaPlugins": {
"eclipse-theia.builtin-extension-pack": "https://open-vsx.org/api/eclipse-theia/builtin-extension-pack/1.95.3/file/eclipse-theia.builtin-extension-pack-1.95.3.vsix",
"Catppuccin.catppuccin-vsc-icons": "https://open-vsx.org/api/Catppuccin/catppuccin-vsc-icons/1.26.0/file/Catppuccin.catppuccin-vsc-icons-1.26.0.vsix",
"Catppuccin.catppuccin-vsc": "https://open-vsx.org/api/Catppuccin/catppuccin-vsc/3.19.0/file/Catppuccin.catppuccin-vsc-3.19.0.vsix",
"oderwat.indent-rainbow": "https://open-vsx.org/api/oderwat/indent-rainbow/8.3.1/file/oderwat.indent-rainbow-8.3.1.vsix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"copy-webpack-plugin": "8.1.1",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "6.0.1",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"yargs": "17",
"@types/yargs": "17",
"cross-env": "^7.0.3",
"shx": "^0.3.4"
}
}