forked from githru/githru-vscode-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 702 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "githru-vscode-ext",
"version": "0.2.0",
"description": "githru-vscode-ext root package.json",
"scripts": {
"build:all": "npm run build --workspaces",
"deploy:all": "npm run deploy --workspaces",
"test:all": "npm run test --workspaces",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{json,yaml,md}' --check",
"prettier:fix": "prettier '**/*.{json,yaml,md}' --write"
},
"author": "githru team",
"license": "MIT",
"workspaces": [
"./packages/*"
],
"dependencies": {
"generator-code": "^1.6.10",
"yo": "^4.3.0"
}
}