-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.87 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.87 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
{
"name": "@yavydev/cli",
"version": "0.3.1",
"description": "Search and manage your AI-ready documentation on Yavy",
"type": "module",
"bin": {
"yavy": "./bin/yavy.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,js}\" \"tests/**/*.{ts,js}\" \"*.{json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js}\" \"tests/**/*.{ts,js}\" \"*.{json,md}\"",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test"
},
"keywords": [
"yavy",
"ai",
"skills",
"documentation",
"cli"
],
"author": {
"name": "Yavy",
"url": "https://yavy.dev"
},
"homepage": "https://github.com/yavydev/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yavydev/cli.git"
},
"bugs": {
"url": "https://github.com/yavydev/cli/issues"
},
"dependencies": {
"@clack/prompts": "1.1.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"fflate": "^0.8.2",
"open": "^11.0.0",
"ora": "^9.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.2.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"bin"
],
"license": "MIT"
}