@istuen/openxenon 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,82 @@
1
+ {
2
+ "name": "@istuen/openxenon",
3
+ "version": "0.1.7",
4
+ "description": "OpenXenon — 工程师与 AI 协作工作台(OXN Engine 实施 L0-L3 四层架构与 IAP 范式,OXL = OpenXenon Language)",
5
+ "author": "istuen",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "main": "./dist/cli.js",
9
+ "types": "./dist/types/index.d.ts",
10
+ "bin": {
11
+ "oxn": "./dist/cli.js"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "scripts": {
17
+ "dev": "bun run src/cli/index.ts",
18
+ "langium:generate": "langium generate",
19
+ "build:dist": "bun build ./src/cli/index.ts --target=node --outdir dist --entry-naming cli.js --banner='#!/usr/bin/env node'",
20
+ "build:types": "tsc --emitDeclarationOnly --outDir dist/types",
21
+ "build:clean": "rm -rf dist",
22
+ "build": "bun run build:clean && bun run langium:generate && bun run build:dist && bun run build:types",
23
+ "test": "bun test",
24
+ "test:watch": "bun test --watch",
25
+ "lint": "eslint src/",
26
+ "lint:fix": "eslint src/ --fix",
27
+ "format": "biome format --write src/",
28
+ "format:check": "biome format src/",
29
+ "check": "biome check src/",
30
+ "typecheck": "tsc --noEmit",
31
+ "clean": "rm -rf dist node_modules",
32
+ "prepare": "lefthook install",
33
+ "prepublishOnly": "bun run prepublish:check && bun run build",
34
+ "prepublish:check": "bun run typecheck && bun run lint && bun test",
35
+ "version:check": "bun run scripts/version-check.ts",
36
+ "version:sync": "bun run scripts/version-sync.ts",
37
+ "docs:dev": "vitepress dev docs",
38
+ "docs:build": "vitepress build docs",
39
+ "docs:preview": "vitepress preview docs"
40
+ },
41
+ "dependencies": {
42
+ "citty": "^0.1.6",
43
+ "glob": "^13.0.6",
44
+ "i18next": "^26.2.0",
45
+ "which": "^2.0.2",
46
+ "yaml": "^2.8.3",
47
+ "zod": "^4.3.6"
48
+ },
49
+ "devDependencies": {
50
+ "@biomejs/biome": "^2.4.15",
51
+ "@typescript-eslint/eslint-plugin": "^8.59.4",
52
+ "@typescript-eslint/parser": "^8.59.4",
53
+ "bun-types": "^1.1.38",
54
+ "eslint": "^10.4.0",
55
+ "langium": "^4.2.4",
56
+ "langium-cli": "^4.2.1",
57
+ "lefthook": "^2.1.8",
58
+ "typescript": "^5.4.5",
59
+ "vitepress": "^1.6.4"
60
+ },
61
+ "engines": {
62
+ "node": ">=18"
63
+ },
64
+ "keywords": [
65
+ "cli",
66
+ "ai",
67
+ "llm",
68
+ "engineering",
69
+ "automation",
70
+ "verification",
71
+ "oxl",
72
+ "openxenon-language"
73
+ ],
74
+ "repository": {
75
+ "type": "git",
76
+ "url": "https://github.com/istuen/openxenon.git"
77
+ },
78
+ "bugs": {
79
+ "url": "https://github.com/istuen/openxenon/issues"
80
+ },
81
+ "homepage": "https://github.com/istuen/openxenon#readme"
82
+ }