-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.91 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.91 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
{
"name": "codeguide",
"version": "0.0.25",
"description": "A CLI tool for code guidance with programmatic API",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"build:core": "cd packages/core && npm run build",
"build:cli": "cd packages/cli && npm run build",
"dev": "cd packages/cli && npm run dev",
"start": "cd packages/cli && npm run start",
"test": "npm run test --workspaces",
"test:coverage": "npm run test:coverage --workspaces",
"test:watch": "npm run test:watch --workspaces",
"lint": "npm run lint --workspaces",
"typecheck": "npm run typecheck --workspaces",
"format": "prettier --write \"packages/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"packages/**/*.{ts,js,json,md}\"",
"dev:link": "npm run build && npm run dev:link:core && npm run dev:link:cli",
"dev:link:core": "cd packages/core && npm run dev:link",
"dev:link:cli": "cd packages/cli && npm link",
"dev:unlink": "npm run dev:unlink:core && npm run dev:unlink:cli",
"dev:unlink:core": "cd packages/core && npm unlink",
"dev:unlink:cli": "cd packages/cli && npm unlink",
"dev:prepare": "npm run build && npm run lint && npm run typecheck"
},
"keywords": [
"cli",
"typescript",
"api",
"code",
"development",
"productivity",
"ai"
],
"author": "CodeGuide Team",
"repository": {
"type": "git",
"url": "https://github.com/CodeGuide-dev/codeguide.git"
},
"bugs": {
"url": "https://github.com/CodeGuide-dev/codeguide/issues"
},
"homepage": "https://github.com/CodeGuide-dev/codeguide#readme",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"axios-mock-adapter": "^1.22.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}