-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 838 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 838 Bytes
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
{
"name": "wauth",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"install-all": "bash ./scripts/install.sh",
"backend": "cd backend && bun run start",
"start": "cd backend && bun run start",
"demo": "cd demo && bun run dev",
"dev": "bash ./scripts/dev.sh",
"build": "bash ./scripts/build.sh",
"refresh": "cd sdk; npm run build; cd ../strategy; npm remove @wauth/sdk; rm -rf node_modules; npm i ../sdk; npm run build; cd ../demo; bun remove @wauth/strategy;rm -rf node_modules;bun i ../strategy;",
"publish:sdk": "cd sdk && npm run publish-npm",
"publish:strategy": "cd strategy && npm run publish-npm"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"concurrently": "^9.2.0"
}
}