-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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
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
{
"name": "@microsoft/agentrc",
"version": "2.1.0",
"description": "Set up repositories for AI-assisted development",
"main": "dist/index.js",
"type": "module",
"workspaces": [
"packages/*"
],
"bin": {
"agentrc": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"prepare": "npm run build && (test \"$CI\" = true || husky)",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@github/copilot-sdk": "^0.2.0",
"@inquirer/prompts": "^8.2.1",
"@octokit/rest": "^22.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"ink": "^6.7.0",
"react": "^19.2.4",
"simple-git": "^3.33.0"
},
"lint-staged": {
"*.{ts,tsx,js,json,md}": "prettier --write"
},
"devDependencies": {
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.3",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
}
}