forked from anomalyco/openauth
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.07 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.07 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
{
"name": "openauthjs",
"module": "index.ts",
"type": "module",
"workspaces": [
"packages/openauth",
"examples/issuer/*",
"examples/client/*"
],
"scripts": {
"check:ci": "bun run --filter './packages/**' --if-present ci",
"check": "bun run --filter './packages/**' --if-present check",
"check:write": "bun run --filter './packages/**' --if-present check:write",
"prepare": "simple-git-hooks",
"release": "bun run --filter=\"@kagii/openauth\" build && changeset publish",
"publish:fork": "bun run --filter=\"@kagii/openauth\" build && npm publish -w packages/openauth",
"test": "bun run --filter './packages/**' test",
"typecheck": "bun run --filter './packages/**' --if-present typecheck"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@tsconfig/node22": "22.0.0",
"@types/bun": "latest",
"simple-git-hooks": "2.13.1"
},
"simple-git-hooks": {
"pre-commit": "bun run check:write && git add -A"
},
"dependencies": {
"@changesets/cli": "2.27.10",
"typescript": "5.6.3"
},
"private": true
}