-
-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.25 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
85
86
87
88
89
90
91
{
"name": "@mx-space/cli",
"version": "0.13.1",
"description": "Command line interface for mx-space (mx-core) — auth, content, configuration",
"keywords": [
"mx-space",
"mx-core",
"cli",
"mxs",
"headless-cms"
],
"homepage": "https://github.com/mx-space/core/tree/master/packages/cli#readme",
"bugs": {
"url": "https://github.com/mx-space/core/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mx-space/core.git",
"directory": "packages/cli"
},
"license": "AGPL-3.0",
"author": "Innei <https://innei.in>",
"type": "module",
"engines": {
"node": ">=22"
},
"files": [
"bin",
"dist",
"skills",
"README.md",
"ROADMAP.md"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"mxs": "./bin/mxs.cjs"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"package": "rm -rf dist && tsdown",
"build": "npm run package",
"prepackage": "rm -rf dist",
"clean": "rm -rf dist",
"dev": "tsx src/bin/mxs.ts",
"prepare": "node scripts/setup-local-bin.cjs",
"setup:local-bin": "node scripts/setup-local-bin.cjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.5.1",
"@effect/cli": "0.75.2",
"@effect/platform": "0.96.1",
"@effect/platform-node": "0.107.0",
"@haklex/rich-headless": "0.27.0",
"@haklex/rich-litexml": "0.27.0",
"@haklex/rich-litexml-cli": "0.27.0",
"@lexical/headless": "^0.45.0",
"@mx-space/api-client": "workspace:*",
"@mx-space/editor": "workspace:*",
"better-auth": "^1.6.16",
"effect": "3.21.3",
"fast-xml-parser": "5.8.0",
"get-east-asian-width": "^1.6.0",
"lexical": "^0.45.0",
"minisearch": "^7.2.0",
"open": "^11.0.0",
"semver": "7.8.4"
},
"devDependencies": {
"@effect/vitest": "0.29.0",
"@types/node": "25.9.3",
"@types/semver": "7.7.1",
"tsdown": "0.22.2",
"tsx": "^4.22.4",
"typescript": "6.0.3",
"vitest": "4.1.8"
}
}