-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 933 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 933 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
30
31
{
"name": "cem-monorepo",
"version": "1.0.0",
"private": true,
"description": "Custom Elements Manifest tools and extensions",
"workspaces": [
"extensions/vscode",
"extensions/vscode/client",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"clean": "npm run clean --workspaces --if-present",
"ext:build": "npm run build --workspace=extensions/vscode",
"ext:package": "npm run build --workspace=extensions/vscode",
"ext:publish": "npm run publish --workspace=extensions/vscode"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"typescript": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bennypowers/cem.git"
},
"license": "GPL-3.0-or-later"
}