-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 876 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 876 Bytes
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
{
"name": "react-timeline-editor-monorepo",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xzdarcy/react-timeline-editor.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"installConfig": {
"hoistingLimits": "workspaces"
},
"packageManager": "yarn@4.9.2",
"scripts": {
"docs": "yarn workspace docs run",
"example": "yarn workspace example run",
"build": "yarn workspaces foreach -ptvA --no-private --include='packages/**' run build || exit 1",
"publish:alpha": "bash scripts/publish-alpha.sh",
"publish:release": "bash scripts/publish-release.sh"
},
"devDependencies": {
"semver": "^7.7.2",
"zx": "^8.1.1"
},
"engines": {
"node": ">=20"
},
"resolutions": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
}
}