-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.14 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.14 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
77
78
79
80
81
82
83
84
{
"name": "@nejcm/ulis",
"version": "0.0.25",
"description": "ULIS - Unified LLM Interface Specification CLI. Generate agent/skill/mcp/rules configs for Claude Code, Codex, Cursor, OpenCode, and ForgeCode from a single source of truth.",
"license": "ISC",
"author": "nejcm",
"type": "module",
"bin": {
"ulis": "dist/cli.js"
},
"exports": {
"./package.json": "./package.json",
"./schemas/*": "./schemas/*"
},
"files": [
"dist",
"schemas",
"skills"
],
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nejcm/ulis.git"
},
"keywords": [
"ai",
"claude",
"codex",
"cursor",
"opencode",
"forgecode",
"cli",
"agents",
"mcp",
"skills",
"config"
],
"scripts": {
"build": "tsup && bun run gen:schemas && bun run copy:presets",
"dev": "tsx src/cli.ts build --source example",
"dev:install": "tsx src/cli.ts install --yes",
"clean": "rimraf dist schemas",
"format:check": "oxfmt --check .",
"format": "oxfmt .",
"gen:reference": "tsx src/tools/gen-reference.ts",
"gen:schemas": "tsx src/tools/gen-json-schema.ts",
"copy:presets": "tsx src/tools/copy-presets.ts",
"lint": "tsc --noEmit",
"test:coverage": "bun test --coverage",
"test:update": "bun test --update-snapshots",
"test": "bun test",
"tui": "tsx src/cli.ts tui",
"ulis": "tsx src/cli.ts",
"docs": "bun docs:dev",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@cel-tui/core": "~0.8.3",
"cac": "~7.0.0",
"gray-matter": "~4.0.3",
"smol-toml": "~1.6.1",
"ts-deepmerge": "~7.0.3",
"yaml": "~2.8.3",
"zod": "~4.4.1"
},
"devDependencies": {
"@nejcm/ulis": "file:.",
"@types/bun": "~1.3.13",
"@types/node": "~24.12.2",
"oxfmt": "~0.47.0",
"rimraf": "~6.1.3",
"tsup": "~8.5.1",
"tsx": "~4.21.0",
"typescript": "~6.0.3",
"vitepress": "~1.6.4",
"zod-to-json-schema": "~3.25.2"
},
"packageManager": "bun@1.3.13"
}