-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
66 lines (66 loc) · 1.99 KB
/
package.json
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
{
"private": true,
"packageManager": "[email protected]",
"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": {
"format": "prettier --write \"apps/**/*.ts\" \"test/**/*.ts\" \"packages/**/*.ts\"",
"prepare": "husky install && node scripts/init-project.mjs && corepack enable",
"build:external": "pnpm -C \"packages/complied\" run build",
"build": "pnpm run build:external && pnpm -C \"apps/core\" run build",
"dev": "pnpm run build:external && pnpm -C \"apps/core\" run start",
"bundle": "pnpm run build:external && pnpm -C \"apps/core\" run bundle",
"test": "pnpm run build:external && pnpm -C \"apps/core\" run test",
"lint": "pnpm -C \"apps/core\" run lint",
"publish:core": "cd apps/core && npm run publish"
},
"optionalDependencies": {
"mongodb-memory-server": "10.1.2",
"redis-memory-server": "0.11.0"
},
"dependencies": {
"zx-cjs": "7.0.7-0"
},
"devDependencies": {
"@innei/prettier": "0.15.0",
"@sxzz/eslint-config": "4.4.0",
"@types/node": "22.7.7",
"cross-env": "7.0.3",
"eslint": "^9.11.0",
"eslint-plugin-unused-imports": "4.1.4",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsup": "8.3.0",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --ignore-path ./.prettierignore --write "
]
},
"issues": "https://github.com/mx-space/core/issues",
"resolutions": {
"get-pixels@^3>request": "./external/request",
"mongodb": "6.9.0",
"pino": "./external/pino",
"semver": "7.6.3",
"typescript": "5.6.3",
"whatwg-url": "14.0.0"
}
}