-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.88 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.88 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
{
"name": "r3bl-vscode-extensions",
"version": "1.0.0",
"description": "A monorepo containing all R3BL VSCode extensions",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/r3bl-org/r3bl-vscode-extensions.git"
},
"author": "R3BL",
"license": "MIT",
"scripts": {
"build": "npm run build --workspaces",
"build:theme": "npm run build --workspace=packages/r3bl-theme",
"build:copyright": "npm run build --workspace=packages/r3bl-auto-insert-copyright",
"build:task-management": "npm run compile --workspace=packages/r3bl-task-management",
"build:copy-selection": "npm run build --workspace=packages/r3bl-copy-selection-path-and-range",
"package": "npm run package --workspaces",
"package:theme": "npm run package --workspace=packages/r3bl-theme",
"package:copyright": "npm run package --workspace=packages/r3bl-auto-insert-copyright",
"package:task-management": "npm run package --workspace=packages/r3bl-task-management",
"package:copy-selection": "npm run package --workspace=packages/r3bl-copy-selection-path-and-range",
"lint": "npm run lint --workspaces",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"test": "npm run test --workspaces",
"clean": "npm run clean --workspaces && rm -rf node_modules",
"install-all": "npm install"
},
"devDependencies": {
"@types/node": "20.x",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.13.0",
"prettier": "^3.6.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}