-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 836 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 836 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
26
27
28
29
{
"name": "restlens-client",
"version": "1.0.1",
"private": true,
"description": "REST Lens Client - VS Code extension for OpenAPI specification evaluation",
"repository": {
"type": "git",
"url": "https://github.com/Edthing/restlens-ide"
},
"license": "GPL-3.0",
"author": "REST Lens Team",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @restlens-ide/shared && npm run build -w @restlens-ide/lsp-server && npm run build -w restlens-client",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "rm -rf packages/*/dist packages/*/out node_modules"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}