-
-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.66 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
{
"private": true,
"packageManager": "pnpm@11.10.0",
"engines": {
"node": ">=22"
},
"license": "AGPLv3",
"homepage": "https://github.com/mx-space/core#readme",
"repository": {
"directory": "mx-space/core",
"url": "https://github.com/mx-space/core"
},
"author": "Innei <https://innei.in>",
"scripts": {
"check:ai-translation-hash": "pnpm -C apps/core exec tsx scripts/check-ai-translation-hash.ts",
"check:controller-response-envelope": "pnpm -C apps/core exec tsx ../../scripts/check-controller-response-envelope.ts",
"check:validate-false-paired": "pnpm -C apps/core exec tsx ../../scripts/check-validate-false-paired-with-check.ts",
"format": "prettier --write \"apps/**/*.ts\"",
"lexical-live": "pnpm -C apps/core exec node scripts/lexical-translation-live.mjs",
"prepare": "simple-git-hooks",
"build": "pnpm -C \"apps/core\" run build",
"dev": "pnpm -C \"apps/core\" run dev",
"bundle": "pnpm -C \"apps/core\" run bundle",
"e2e": "pnpm -C \"packages/e2e\" run test",
"test": "pnpm -C \"apps/core\" run test",
"lint": "pnpm -C \"apps/core\" run lint",
"typecheck": "pnpm check:controller-response-envelope && pnpm check:validate-false-paired && pnpm -C \"apps/core\" run typecheck",
"publish:core": "cd apps/core && npm run publish",
"dev:admin": "pnpm -C apps/admin run dev",
"build:admin": "pnpm -C apps/admin run build",
"typecheck:admin": "pnpm -C apps/admin run typecheck",
"lint:admin": "pnpm -C apps/admin run lint"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@lobehub/eslint-config": "^2.1.5",
"@mx-space/cli": "workspace:*",
"@types/node": "26.0.1",
"cross-env": "10.1.0",
"eslint": "^10.6.0",
"lint-staged": "17.0.8",
"prettier": "3.9.4",
"prettier-package-json": "2.8.0",
"prettier-plugin-ember-template-tag": "2.1.7",
"redis-memory-server": "0.17.0",
"rimraf": "6.1.3",
"rolldown": "1.1.4",
"simple-git-hooks": "2.13.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "6.0.3",
"vite-tsconfig-paths": "6.1.1"
},
"resolutions": {
"eslint-plugin-react-compiler>zod": "3.25.76",
"get-pixels@^3>request": "./external/request",
"pino": "./external/pino",
"rolldown": "1.1.4",
"semver": "7.8.5",
"typescript": "6.0.3",
"undici": "^7.28.0",
"whatwg-url": "16.0.1",
"zod": "4.4.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --ignore-path ./.prettierignore --write "
]
},
"issues": "https://github.com/mx-space/core/issues"
}