-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "@umijs/ai",
"version": "0.1.1",
"bin": {
"uai": "./bin/ai.js"
},
"scripts": {
"start": "node dist/cli.js",
"dev": "father dev",
"build": "father build",
"format": "prettier --write .",
"release": "father doctor && npm run build && npm version patch && npm publish && git push --tags",
"release:minor": "father doctor && npm run build && npm version minor && npm publish && git push --tags"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist"
],
"dependencies": {
"@ai-sdk/openai": "^1.0.5",
"@types/yargs-parser": "^21.0.3",
"@umijs/clack-prompts": "^0.0.4",
"ai": "^4.0.9",
"c12": "^2.0.1",
"dedent": "^1.5.3",
"picocolors": "^1.1.1",
"yargs-parser": "^21.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.10.1",
"father": "^4.5.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"tsx": "^4.19.2"
},
"volta": {
"node": "20.18.1",
"pnpm": "9.14.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
}
}