-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "prosemirror-flat-list-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "nr -r --stream --sequential build",
"dev": "nr -r --parallel dev",
"test": "vitest",
"api": "nr -r --stream build:tsc",
"typecheck": "tsc --build .",
"lint": "eslint .",
"fix": "eslint --fix . && prettier --write .",
"change": "changeset",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile && nr build && nr api",
"ci:publish": "pnpm publish -r --no-git-checks"
},
"devDependencies": {
"@antfu/ni": "^0.23.0",
"@changesets/cli": "^2.27.9",
"@ocavue/eslint-config": "^2.10.4",
"eslint": "^9.14.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
},
"renovate": {
"extends": [
"github>ocavue/config-renovate"
],
"ignoreDeps": [],
"dependencyDashboard": true
},
"resolutions": {},
"pnpm": {}
}