-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 1.54 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
{
"name": "@yavydev/cli",
"version": "0.1.0",
"description": "Generate AI skills from your indexed 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",
"format": "prettier --write \"src/**/*.{ts,js}\" \"*.{json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js}\" \"*.{json,md}\""
},
"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": {
"chalk": "^5.3.0",
"commander": "^13.1.0",
"fflate": "^0.8.2",
"open": "^10.1.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"prettier": "^3.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"bin"
],
"license": "MIT"
}