generated from alii/ts-npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.38 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
{
"name": "kaito-http",
"version": "3.0.2",
"repository": "https://github.com/kaito-http/kaito",
"author": "Alistair Smith <hi@alistair.sh>",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"apps/*",
"examples/*"
]
},
"scripts": {
"lint": "yarn workspaces foreach -Rp -j unlimited run prettier . --write",
"compile": "tsc -build",
"build": "yarn workspaces foreach -Rp --topological-dev -j unlimited --from '@kaito-http/*' --no-private run build",
"test-all": "yarn workspaces foreach -Rp -j unlimited --from '@kaito-http/*' --no-private run test",
"attw": "yarn workspaces foreach -Rp -j unlimited --from '@kaito-http/*' --no-private run attw",
"release": "yarn constraints --fix && yarn build && yarn publish-all",
"release-beta": "yarn constraints --fix && yarn build && yarn publish-beta",
"publish-all": "yarn workspaces foreach -R --from '@kaito-http/*' --no-private npm publish --access public",
"publish-beta": "yarn workspaces foreach -R --from '@kaito-http/*' --no-private npm publish --access public --tag=beta"
},
"description": "Functional HTTP Framework for TypeScript",
"homepage": "https://github.com/kaito-http/kaito",
"keywords": [
"typescript",
"http",
"framework"
],
"devDependencies": {
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"packageManager": "yarn@4.5.0"
}