-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.26 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
{
"name": "@unscientificjszhai/howto",
"version": "1.0.0-alpha.2",
"type": "module",
"description": "Use AI to quickly find commands within the terminal.",
"main": "dist/index.js",
"bin": {
"howto": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "lint-staged",
"prepare": "husky",
"test": "npm run test:unit",
"test:unit": "tsc -p tsconfig.test.json && node --test dist-test/tests/unit/*.test.js dist-test/tests/unit/**/*.test.js"
},
"dependencies": {
"@google/genai": "^1.0.0",
"@inquirer/prompts": "^7.0.0",
"ink": "^7.0.3",
"openai": "^4.0.0",
"react": "^19.2.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^10.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "^5.5.3",
"typescript-eslint": "^8.59.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md,yml,yaml}": "prettier --write"
}
}