-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 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
{
"name": "yasumu-workspace",
"version": "0.0.0",
"description": "Yasumu monorepo",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "yarn workspaces foreach -pt -A --exclude @yasumu/app --exclude @yasumu/website run build",
"changelog": "git-cliff --unreleased --tag $(node -p \"require('./apps/yasumu/package.json').version\") --output ./changelogs/$(node -p \"require('./apps/yasumu/package.json').version\")_CHANGELOGS.md",
"format": "prettier --write \"./apps/**/*.{js,ts,jsx,tsx}\" \"./packages/**/*.{js,ts,jsx,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/yasumu-org/yasumu.git"
},
"keywords": [
"yasumu"
],
"author": "twlite <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yasumu-org/yasumu/issues"
},
"homepage": "https://github.com/yasumu-org/yasumu#readme",
"packageManager": "[email protected]",
"devDependencies": {
"git-cliff": "^2.6.1",
"prettier": "^3.3.3"
}
}