-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.83 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "vscode-copilot-dev",
"version": "0.0.1",
"description": "CLI + Utilities for developing Github Copilot chat agents for VS Code",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vscode-copilot-dev": "./bin/init.cjs"
},
"scripts": {
"build": "tsup-node",
"test": "jest --runTestsByPath ./test/e2e-cli-init.spec.ts",
"start": "node ./bin/init.cjs",
"prettier": "prettier --list-different --write --cache .",
"lint": "eslint src --max-warnings=0 --ext ts --fix"
},
"keywords": [
"Github Copilot",
"OpenAI",
"VSCode",
"Chat",
"Dev",
"Utilities"
],
"author": {
"email": "jon.lester@microsoft.com",
"name": "Microsoft CAE"
},
"license": "MIT",
"engines": {
"vscode": "^1.85.0",
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"files": [
"dist/*",
"bin/*",
"templates/*"
],
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.10",
"@types/mustache": "^4.2.5",
"@types/node": "^20.10.3",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"commander": "^11.1.0",
"glob": "^10.3.10",
"listr2": "^8.0.0",
"mustache": "^4.2.0",
"strip-ansi": "^7.1.0",
"validate-npm-package-name": "^5.0.0"
}
}