-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "root",
"private": true,
"version": "4.0.6",
"type": "module",
"scripts": {
"build": "yarn workspaces foreach -ptv --all run build",
"lint": "yarn workspaces foreach -ptv --all run lint",
"lint:fix": "yarn workspaces foreach -ptv --all run lint:fix",
"test": "yarn workspaces foreach -ptv --all run test",
"prePush": "yarn run lint && yarn run test",
"bump": "yarn version ${0} && yarn bump:workspaces",
"bump:workspaces": "yarn workspaces foreach -A run bump-to $npm_package_version"
},
"devDependencies": {
"@types/node": "22.13.1",
"@types/resize-observer-browser": "0.1.1",
"@webcomponents/webcomponentsjs": "2.8.0",
"core-js": "3.40.0",
"cross-env": "7.0.3",
"glob": "11.0.1",
"globby": "11.1.0",
"husky": "4.3.8",
"npm-run-all": "4.1.5",
"typescript": "5.7.3",
"vite": "6.0.10"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/codemirror"
]
},
"packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18.20.2"
}
}