-
-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.28 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
{
"name": "@mx-space/cli",
"version": "0.17.0",
"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": "pnpm -C ../../apps/admin run build:author && tsdown && node scripts/vendor-author.mjs",
"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": {
"@haklex/rich-litexml": "0.42.1"
},
"devDependencies": {
"@clack/prompts": "^1.7.0",
"@effect/cli": "0.77.0",
"@effect/platform": "0.97.1",
"@effect/platform-node": "0.108.1",
"@effect/vitest": "0.30.0",
"@haklex/rich-headless": "0.42.1",
"@lexical/headless": "^0.49.0",
"@mx-space/api-client": "workspace:*",
"@mx-space/editor": "workspace:*",
"@types/node": "26.5.0",
"@types/semver": "7.8.0",
"better-auth": "^1.6.27",
"effect": "3.22.1",
"fast-xml-parser": "5.11.1",
"get-east-asian-width": "^1.6.0",
"lexical": "^0.49.0",
"minisearch": "^7.2.0",
"open": "^11.0.2",
"semver": "7.8.5",
"tsdown": "0.22.14",
"tsx": "^4.23.13",
"typescript": "6.0.3",
"vitest": "4.1.11"
}
}