@cedarjs/auth-dbauth-setup 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@cedarjs/auth-dbauth-setup",
3
+ "version": "0.0.4",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/cedarjs/cedar.git",
7
+ "directory": "packages/auth-providers/dbAuth/setup"
8
+ },
9
+ "license": "MIT",
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "scripts": {
16
+ "build": "yarn build:js && yarn build:types",
17
+ "build //": "Including .snap in extensions because of https://github.com/babel/babel/issues/11394",
18
+ "build:js": "babel src -d dist --extensions \".js,.ts,.snap\" --copy-files --no-copy-ignored",
19
+ "build:pack": "yarn pack -o cedar-auth-dbauth-setup.tgz",
20
+ "build:types": "tsc --build --verbose",
21
+ "build:watch": "nodemon --watch src --ext \"js,jsx,ts,tsx,template\" --ignore dist --exec \"yarn build\"",
22
+ "prepublishOnly": "NODE_ENV=production yarn build",
23
+ "test": "yarn vitest run src",
24
+ "test:watch": "yarn test --watch"
25
+ },
26
+ "dependencies": {
27
+ "@babel/runtime-corejs3": "7.26.10",
28
+ "@cedarjs/cli-helpers": "0.0.4",
29
+ "@prisma/internals": "5.20.0",
30
+ "@simplewebauthn/browser": "7.4.0",
31
+ "core-js": "3.42.0",
32
+ "prompts": "2.4.2",
33
+ "terminal-link": "2.1.1"
34
+ },
35
+ "devDependencies": {
36
+ "@babel/cli": "7.26.4",
37
+ "@babel/core": "^7.26.10",
38
+ "@simplewebauthn/typescript-types": "7.4.0",
39
+ "@types/yargs": "17.0.33",
40
+ "typescript": "5.6.2",
41
+ "vitest": "2.1.9"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "gitHead": "5b4f77f985bd86ee31ee7338312627accf0cb85b"
47
+ }