-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"name": "openauthster",
"private": true,
"type": "module",
"version": "1.0.2",
"description": "OpenAuthster monorepo — issuer, shared client, WebUI, native SDKs",
"repository": {
"type": "git",
"url": "git+https://github.com/shpaw415/OpenAuthSter.git"
},
"workspaces": {
"packages": ["apps/*", "packages/*"]
},
"scripts": {
"workspace": "bun run ./scripts/workspace.ts",
"install:core": "bun install",
"install:all": "bun install",
"check": "bun run ./scripts/workspace.ts check --scope=core",
"check:all": "bun run ./scripts/workspace.ts check --scope=all",
"test": "bun run ./scripts/workspace.ts test --scope=core",
"test:all": "bun run ./scripts/workspace.ts test --scope=all",
"test:shared": "bun run --filter openauthster-shared test",
"build": "bun run ./scripts/workspace.ts build --scope=core",
"build:all": "bun run ./scripts/workspace.ts build --scope=all",
"docs:build": "bun run ./scripts/workspace.ts build --repo=docs"
},
"devDependencies": {
"@types/bun": "^1.3.11"
},
"engines": {
"bun": ">=1.2.0"
}
}