-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 KB
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
43
44
{
"name": "@reciple/monorepo",
"license": "LLGPL-3.0-only",
"version": "10.2.0",
"private": true,
"type": "module",
"scripts": {
"clean": "rm -rf ./packages/*/bin ./packages/*/dist",
"build": "turbo run build",
"build:packages": "turbo run build --filter !@reciple/website --filter !example",
"docs": "bun ./scripts/docs.ts",
"check": "turbo run check",
"test": "bun run --cwd ./example dev",
"bump": "bun ./scripts/bump.ts",
"test-create": "bun run build && node --enable-source-maps ./packages/reciple/dist/bin/reciple.js create test-template",
"test-create:default": "bun run build && node --enable-source-maps ./packages/reciple/dist/bin/reciple.js create test-template -D"
},
"devDependencies": {
"@actions/core": "^3.0.1",
"@types/node": "catalog:",
"rimraf": "^6.1.3",
"tsdown": "catalog:",
"turbo": "^2.9.12",
"typescript": "catalog:",
"unrun": "^0.3.0"
},
"packageManager": "bun@1.3.8",
"workspaces": {
"packages": [
"packages/*",
"apps/*",
"example"
],
"catalog": {
"@prtty/print": "^1.1.3",
"@prtty/prtty": "^1.1.2",
"@types/node": "^25.7.0",
"discord.js": "^14.26.4",
"pkg-types": "^2.3.1",
"tsdown": "^0.22.0",
"typescript": "^6.0.3"
}
}
}