-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.1 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.1 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
{
"name": "snapdrag-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/zheksoon/snapdrag.git"
},
"license": "MIT",
"author": {
"name": "Eugene Daragan"
},
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "NODE_ENV=production yarn ws-exec build",
"dev": "NODE_ENV=development yarn ws-exec-parallel dev",
"lint": "yarn ws-exec-parallel lint",
"test": "yarn ws-exec-parallel test",
"typecheck": "yarn ws-exec-parallel typecheck",
"publish": "yarn workspaces foreach --all --topological --exclude snapdrag-monorepo --exclude snapdrag-examples --verbose version \"$@\" && yarn workspaces foreach --all --topological --exclude snapdrag-monorepo --exclude snapdrag-examples --verbose npm publish --access public",
"ws-exec": "yarn workspaces foreach --all --topological --exclude snapdrag-monorepo --verbose run",
"ws-exec-parallel": "yarn workspaces foreach --all --parallel --exclude snapdrag-monorepo --verbose run"
},
"packageManager": "yarn@4.9.1",
"engines": {
"node": ">=20.18.0"
}
}