-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.05 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@aibetter/aib",
"type": "module",
"version": "0.1.3",
"private": false,
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b",
"description": "AI Ecosystem CLI",
"author": "litingyes <luz.liting@gmail.com> (https://litingyes.top/)",
"license": "MIT",
"homepage": "https://github.com/aibetter/aib#readme",
"bugs": {
"url": "https://github.com/aibetter/aib/issues"
},
"keywords": [
"aibetter",
"cli",
"ai",
"ecosystem"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"aib": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"format": "eslint --fix .",
"dev": "tsdown --watch",
"build": "tsdown",
"sync": "pnpm build && pnpm aib sync",
"commit": "git-cz",
"changelogen": "changelogen -r $npm_package_version --output",
"prerelease": "pnpm build",
"release": "bumpp",
"prepare": "husky"
},
"dependencies": {
"axios": "^1.11.0",
"c12": "^3.2.0",
"chalk": "^5.5.0",
"commander": "^14.0.0",
"fs-extra": "^11.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22",
"bumpp": "^10.2.2",
"changelogen": "^0.6.2",
"commitizen": "^4.3.1",
"eslint": "^9.33.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"inquirer": "^12.3.3",
"lint-staged": "^16.1.5",
"tsdown": "^0.13.5",
"typescript": "^5.7.3"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "eslint --fix"
}
}