-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.38 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.38 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
92
93
94
95
{
"name": "haklex",
"private": true,
"description": "Modular Lexical-based rich editor ecosystem. Edit, static render, SSR, and server-side parse — all from one schema. React 19, TypeScript 5.9, Vanilla Extract, ESM.",
"repository": {
"type": "git",
"url": "https://github.com/Innei/haklex.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "turbo build",
"build:packages": "turbo run build --filter='./packages/*'",
"build:rich": "pnpm run build:packages",
"dev": "turbo dev --filter=./demo",
"lint": "eslint . --fix",
"prepare": "pnpm exec simple-git-hooks",
"publish:packages": "pnpm run build:packages && pnpm -r publish --no-git-checks --filter '@haklex/*' --filter '!@haklex/rich-editor-demo'",
"publish:rich": "pnpm run publish:packages",
"release": "bumpp -r",
"release:dry": "bumpp -r --no-commit --no-tag --no-push",
"release:packages": "bumpp -r -x \"sh -c 'pnpm run build:packages && pnpm run publish:packages'\"",
"release:rich": "bumpp -r -x \"sh -c 'pnpm run build:packages && pnpm run publish:packages'\""
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,yml,yaml}": [
"eslint --fix"
],
"*": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@lobehub/eslint-config": "^2.1.5",
"@lobehub/prettier-config": "^2.1.5",
"@types/mdast": "^4.0.4",
"@types/node": "25.3.3",
"@types/unist": "^3.0.3",
"bumpp": "^10.4.1",
"commitlint": "^20.4.3",
"eslint": "^9.39.4",
"eslint-config-hyoban": "6.0.0",
"knip": "^5.85.0",
"lint-staged": "16.3.2",
"mdast-util-to-string": "^4.0.0",
"prettier": "3.8.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"sharp": "^0.34.5",
"simple-git-hooks": "2.13.1",
"stylelint": "^17.4.0",
"thumbhash": "^0.1.1",
"tsx": "^4.21.0",
"turbo": "^2.8.14",
"unified": "^11.0.5",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@swc/core",
"esbuild",
"sharp",
"simple-git-hooks"
],
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@^1.0.44",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@^1.0.44",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1.0.44",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1.0.44",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1.0.44",
"better-auth>@better-auth/drizzle-adapter": "-",
"better-auth>@better-auth/prisma-adapter": "-",
"has": "npm:@nolyfill/has@^1.0.44",
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39",
"object.assign": "npm:@nolyfill/object.assign@^1.0.44",
"object.entries": "npm:@nolyfill/object.entries@^1.0.44",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1.0.44",
"object.groupby": "npm:@nolyfill/object.groupby@^1.0.44",
"object.hasown": "npm:@nolyfill/object.hasown@^1.0.44",
"object.values": "npm:@nolyfill/object.values@^1.0.44",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1.0.44",
"vite": "beta"
}
}
}