-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 1.21 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
{
"private": true,
"author": "DidaS",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Didas-git/lilybird"
},
"homepage": "https://github.com/Didas-git/lilybird#readme",
"bugs": {
"url": "https://github.com/Didas-git/lilybird/issues"
},
"workspaces": [
"packages/*"
],
"scripts": {
"check": "eslint .",
"build:core": "bun --filter lilybird build",
"build:transformers": "bun --filter @lilybird/transformers build",
"build:handlers": "bun --filter @lilybird/handlers build",
"build:redis": "bun --filter @lilybird/redis build",
"build:jsx": "bun --filter @lilybird/jsx build",
"build:helpers": "bun --filter @lilybird/helpers build",
"build:create": "bun --filter @lilybird/create build",
"build": "bun run build:core && bun run build:transformers && bun run build:handlers && bun run build:redis && bun run build:jsx && bun run build:helpers && bun run build:create && bun run check"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.7.2",
"bun-types": "^1.1.26",
"eslint": "^9.9.1",
"eslint-plugin-jsdoc": "^50.2.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}