-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@siiway/prism",
"version": "0.1.5-fix-1",
"description": "TypeScript SDK for integrating Prism OAuth 2.0 / OpenID Connect identity platform",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun run build:types && bun run build:esm && bun run build:cjs",
"build:types": "tsc --emitDeclarationOnly",
"build:esm": "bun build src/index.ts --outdir dist --format esm --target browser --sourcemap=external",
"build:cjs": "bun build src/index.ts --outdir dist/cjs --format cjs --target node && mv dist/cjs/index.js dist/index.cjs && rm -rf dist/cjs && cp dist/index.d.ts dist/index.d.cts",
"typecheck": "tsc --noEmit",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"prism",
"oauth",
"oidc",
"openid-connect",
"authentication",
"authorization",
"pkce",
"identity"
],
"license": "GPL-3.0",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "~5.9.3",
"vitepress": "^1.6.4"
},
"dependencies": {
"@noble/post-quantum": "^0.6.1"
}
}