-
-
Notifications
You must be signed in to change notification settings - Fork 552
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) 路 2.54 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) 路 2.54 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
{
"name": "@milkdown/monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "pnpm test:lint && pnpm test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:lint": "oxlint -c .oxlintrc.json --deny-warnings",
"test:e2e": "pnpm --filter=@milkdown/e2e test",
"test:e2e:debug": "pnpm --filter=@milkdown/e2e run test:debug",
"test:e2e:build": "pnpm --filter=@milkdown/e2e run build",
"format": "lint-staged",
"fix": "oxfmt .",
"start": "pnpm --filter=@milkdown/storybook run start",
"build:tsc": "tsc -b tsconfig.json --verbose",
"build:post": "pnpm -r run build",
"build": "pnpm build:tsc && pnpm build:post",
"codegen": "tsx ./scripts/gen-ts-config.mts",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm build && pnpm publish --access public -r --no-git-checks --tag latest",
"clear": "rimraf 'packages/*/{lib,tsconfig.tsbuildinfo,node_modules,.rollup.cache}' && rimraf node_modules",
"changeset": "changeset && tsx scripts/changelog.mts",
"release": "changeset publish",
"commit": "git-cz",
"prepare": "husky",
"storybook": "pnpm --filter=@milkdown/e2e run storybook",
"knip": "knip"
},
"devDependencies": {
"@changesets/cli": "^3.0.0",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@milkdown/dev": "workspace:*",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.7.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.0.0",
"autoprefixer": "^10.2.5",
"esbuild": "^0.28.0",
"git-cz": "^4.7.6",
"husky": "^9.0.10",
"jsdom": "^30.0.0",
"knip": "^6.0.0",
"lint-staged": "^17.0.0",
"oxfmt": "^0.68.0",
"oxlint": "^1.8.0",
"oxlint-tsgolint": "^7.0.0",
"pkg-pr-new": "^0.0.88",
"postcss": "^8.4.38",
"postcss-cli": "^12.0.0",
"postcss-nested": "^8.0.0",
"rimraf": "^6.0.0",
"rollup": "^4.22.4",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esbuild": "^6.0.0",
"tailwindcss": "^4.0.0",
"terser": "^5.43.1",
"tsx": "^4.19.3",
"typescript": "^7.0.0",
"vite": "^8.0.0",
"vitest": "^5.0.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@12.5.1"
}