-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
28 lines (28 loc) · 1.19 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
{
"private": true,
"workspaces": [
"packages/**"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "cd packages/silent && np patch --no-tests --branch=2x",
"deploy": "run-s sync && gh-pages -d blog",
"sync": "run-p sync:readme:packages sync:readme:blog && run-s sync:blog",
"sync:blog": "rm -rf packages/silent/blog && cp -r blog packages/silent/ && rm packages/silent/blog/.eslintrc.js",
"sync:readme:blog": "cat README.md | jayin -ti -to 'x.replaceAll(`https://github.com/fritx/silent/tree/1x`, `../silent/`).replaceAll(`https://blog.fritx.me/?`, `?`).replaceAll(`https://fritx.github.io/silent/?`, `?`).replaceAll(`https://fritx.github.io/silent/p/`, `../../`)' > blog/p/projects/silent_2.0/README.md",
"sync:readme:packages": "cp README.md packages/silent/ && cp README.md packages/create-silent/"
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-fritx": "^0.2.4",
"eslint-plugin-es5": "^1.5.0",
"gh-pages": "^4.0.0",
"jayin": "^0.0.3",
"np": "^8.0.4",
"npm-run-all": "^4.1.5"
},
"homepage": "https://github.com/fritx/silent",
"repository": "[email protected]:fritx/silent.git",
"license": "MIT"
}