-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2 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
{
"name": "@hexlet-basics/hexlet-basics-assistant",
"version": "1.1.0",
"description": "Typescript boilerplate package",
"author": "Hexlet",
"license": "ISC",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hexlet-boilerplates/typescript-package.git"
},
"bugs": {
"url": "https://github.com/hexlet-boilerplates/typescript-package/issues"
},
"homepage": "https://github.com/hexlet-boilerplates/typescript-package#readme",
"main": "dist/index.js",
"engines": {
"node": ">=22"
},
"files": [
"./dist",
"./oclif.manifest.json"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "npx eslint .",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npx oclif manifest && npx oclif readme",
"test": "vitest run"
},
"simple-git-hooks": {
"pre-push": "make lint"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/eslint": "^9.6.1",
"@types/fs-extra": "^11.0.4",
"@types/multistream": "^4.1.3",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.34.0",
"jiti": "^2.5.1",
"npm-check-updates": "^18.0.2",
"simple-git-hooks": "^2.13.1",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.21",
"@oclif/core": "^4.5.2",
"@sindresorhus/merge-streams": "^4.0.0",
"ai": "^5.0.24",
"es-toolkit": "^1.39.10",
"fs-extra": "^11.3.1",
"isomorphic-git": "^1.33.0",
"multistream": "^4.1.0",
"oclif": "^4.22.14",
"openai": "^5.15.0",
"p-queue": "^8.1.0",
"yaml": "^2.8.1"
},
"bin": {
"hexlet-basics-assistant": "./dist/run.js"
},
"oclif": {
"bin": "hexlet-basics-assistant",
"commands": "./src/commands",
"dirname": "hexlet-basics-assistant",
"topicSeparator": " "
}
}