-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.6 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dialect-morph",
"module": "index.ts",
"type": "module",
"version": "1.0.0",
"scripts": {
"build": "bunx tsc",
"start": "bun run build && dialectMorph",
"format": "bunx prettier . --write",
"format:check": "bunx prettier . --check",
"lint": "bun eslint .",
"linkage": "bun link && bun link dialect-morph",
"linkage:build": "bun run build && bun link && bun link dialect-morph",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"test:single": "jest -t",
"test:coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "bun run format"
}
},
"bin": {
"dialectMorph": "./dist/index.js"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/bun": "latest",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/figlet": "^1.5.8",
"@types/jest": "^29.5.14",
"@types/node": "^22.5.4",
"babel-jest": "^29.7.0",
"globals": "^15.9.0",
"groq-sdk": "^0.7.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"nock": "^13.5.6",
"oxlint": "^0.10.3",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"typescript-eslint": "^8.6.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@google/generative-ai": "^0.19.0",
"chalk": "^5.3.0",
"cli-spinners": "^3.2.0",
"cli-tool": ".",
"commander": "^12.1.0",
"dialect-morph": ".",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"figlet": "^1.7.0",
"openai": "^4.58.2",
"ora": "^8.1.0",
"toml": "^3.0.0"
}
}