-
-
Notifications
You must be signed in to change notification settings - Fork 416
/
package.json
133 lines (133 loc) · 4.84 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@milkdown/monorepo",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=17"
},
"scripts": {
"postinstall": "husky install",
"test": "pnpm test:lint && pnpm test:tsc:cache && pnpm test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:tsc": "pnpm --filter=@milkdown/* run tsc",
"test:tsc:cache": "nx run-many --target=tsc --all --parallel",
"test:lint": "oxlint -c .oxlintrc.json",
"test:e2e": "pnpm --filter=@milkdown/e2e test",
"test:e2e:build": "pnpm --filter=@milkdown/e2e run build",
"format": "lint-staged",
"fix": "prettier . --write",
"start": "pnpm --filter=@milkdown/storybook run start",
"build": "nx run-many --target=build --all --parallel",
"build:affected": "nx affected --target=build",
"build:packs": "pnpm --filter=@milkdown/* run build",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm build:packs && pnpm publish --access public -r --no-git-checks --tag latest",
"graph": "nx dep-graph",
"clear": "rimraf 'packages/*/{lib,tsconfig.tsbuildinfo,node_modules,.rollup.cache}' && rimraf node_modules",
"changeset": "changeset",
"release": "changeset publish",
"commit": "git-cz",
"prepare": "husky",
"storybook": "pnpm --filter=@milkdown/e2e run storybook"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@nrwl/tao": "19.8.4",
"@nx/web": "20.3.0",
"@nx/workspace": "20.3.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.0.0",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.5",
"@swc/helpers": "^0.5.12",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"@types/node": "^22.0.0",
"@types/rollup-plugin-auto-external": "^2.0.2",
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"autoprefixer": "^10.2.5",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"git-cz": "^4.7.6",
"husky": "^9.0.10",
"jsdom": "^25.0.0",
"lint-staged": "^15.0.0",
"nx": "20.3.0",
"oxlint": "^0.15.0",
"pathe": "^1.0.0",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-nested": "^7.0.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.0",
"rollup": "^4.22.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-esbuild": "^6.0.0",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.2.4",
"tslib": "^2.5.0",
"typescript": "^5.4.4",
"vite": "^6.0.0",
"vitest": "^2.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"prosemirror-model",
"prosemirror-state",
"prosemirror-view",
"@babel/core",
"babel-runtime",
"cypress",
"jest",
"vue",
"vite"
],
"allowedVersions": {
"react": "18",
"react-dom": "18",
"typescript": "5"
}
},
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"assert": "npm:@nolyfill/assert@^1",
"deep-equal": "npm:@nolyfill/deep-equal@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"function-bind": "npm:@nolyfill/function-bind@^1",
"has": "npm:@nolyfill/has@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-arguments": "npm:@nolyfill/is-arguments@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"is-generator-function": "npm:@nolyfill/is-generator-function@^1",
"is-typed-array": "npm:@nolyfill/is-typed-array@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.hasown": "npm:@nolyfill/object.hasown@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"typedarray": "npm:@nolyfill/typedarray@^1",
"which-typed-array": "npm:@nolyfill/which-typed-array@^1",
"array-flatten": "npm:@nolyfill/array-flatten@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1"
}
}
}