-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"name": "@msinternal/vibe-grep",
"description": "VibeGrep (vg) is an internal tool for the repo housekeeping.",
"version": "0.0.0-0",
"author": "Microsoft Corporation",
"license": "MIT",
"private": true,
"type": "module",
"bin": {
"vg": "./src/vg.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/BotFramework-WebChat.git"
},
"bugs": {
"url": "https://github.com/microsoft/BotFramework-WebChat/issues"
},
"files": [
"src/**/*"
],
"homepage": "https://github.com/microsoft/BotFramework-WebChat/tree/main/packages/vibe-grep#readme",
"scripts": {
"bump": "vg bump prod && vg bump dev && (npm audit fix || exit 0)",
"eslint": "npm run precommit",
"postversion": "../../scripts/npm/postversion.sh",
"precommit": "../../node_modules/.bin/eslint --report-unused-disable-directives --max-warnings 0",
"preversion": "../../scripts/npm/preversion.sh"
},
"pinDependencies": {},
"localDependencies": {},
"dependencies": {
"@ast-grep/napi": "0.41.0",
"yaml": "2.8.3"
}
}