-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.01 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
{
"name": "lavish-axi",
"version": "0.1.43",
"packageManager": "pnpm@11.1.1",
"description": "HTML is the new markdown. Lavish is the new editor for your HTML artifacts.",
"type": "module",
"bin": {
"lavish-axi": "dist/cli.mjs"
},
"files": [
"dist",
"skills/lavish",
"lavish-editor-marketing/renders/lavish-editor-marketing.gif",
"LICENSE",
"THIRD-PARTY-NOTICES.md",
"README.md"
],
"scripts": {
"build": "node scripts/build.js",
"build:skill": "node scripts/build-skill.js",
"check": "npm run build && npm run lint && npm run format:check && npm run typecheck && npm test && node scripts/build-skill.js --check",
"start": "node dist/cli.mjs",
"lint": "eslint bin src test scripts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepack": "npm run build",
"prepare": "npm run build",
"test": "node --test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@tailwindcss/browser": "4.2.4",
"axi-sdk-js": "^0.1.8",
"chokidar": "^4.0.3",
"daisyui": "^5.5.19",
"express": "^5.2.1",
"open": "^10.2.0",
"parse5": "^8.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@excalidraw/excalidraw": "0.18.1",
"@excalidraw/mermaid-to-excalidraw": "2.2.2",
"@types/node": "^25.6.2",
"esbuild": "^0.28.0",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"mermaid": "11.12.1",
"prettier": "^3.8.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22"
},
"keywords": [
"axi",
"agent",
"cli",
"html",
"review",
"collaboration"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kunchenguid/lavish-axi.git"
},
"bugs": {
"url": "https://github.com/kunchenguid/lavish-axi/issues"
},
"homepage": "https://github.com/kunchenguid/lavish-axi#readme",
"publishConfig": {
"access": "public"
}
}