-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.53 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
34
35
36
37
38
39
40
41
42
{
"name": "bolt-root",
"version": "1.0.0",
"repository": "[email protected]:itsRems/bolt",
"author": "Nicolas Theck <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "test -n \"$NO_YARN_POSTINSTALL\" || yarn run build",
"core": "yarn workspace @bolt-ts/core",
"plexus": "yarn workspace @bolt-ts/plexus",
"fastify": "yarn workspace @bolt-ts/fastify",
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna run build",
"dev": "lerna watch -- lerna run build --since",
"prereleaseOnly": "pinst --disable && echo '🚀 Publishing...'",
"release-stable": "lerna run build && lerna publish --preid canary --no-private --yes --force-publish",
"release-canary": "lerna run build && lerna publish --no-private --yes --canary --preid canary --force-publish",
"postrelease": "pinst --enable && echo '🎉 Published!'",
"copyreadme": "cp README.md packages/bolt-core/README.md && cp README.md packages/bolt-plexus/README.md && cp README.md packages/bolt-fastify/README.md"
},
"devDependencies": {
"@plexusjs/napi": "^1.11.0",
"@types/node": "^18.11.11",
"fastify": "^4.21.0",
"lerna": "7.1.1",
"nodemon": "^2.0.15",
"nx": "16.5.1",
"zod": "^3.21.4",
"typescript": "^5.1.6"
},
"workspaces": {
"packages": [
"packages/*",
"docs"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}