-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "autoreason",
"version": "1.0.0",
"description": "",
"exports": "./src/cli.ts",
"bin": "./dist/cli.js",
"type": "module",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "prettier --check . && xo && ava",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai"
],
"files": [
"dist"
],
"author": "Arda Sevinc <[email protected]>",
"license": "Apache-2.0",
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387",
"prettier": "@ardasevinc/prettier-config",
"devDependencies": {
"@ardasevinc/prettier-config": "^0.1.4",
"@sindresorhus/tsconfig": "^7.0.0",
"ava": "^6.2.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"xo": "^0.60.0"
},
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"meow": "^13.2.0",
"openai": "^4.76.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"prettier": true,
"rules": {
"n/prefer-global/process": 0
}
}
}