-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 KB
/
package.json
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
56
57
58
{
"name": "@pcd/webauthn-pcd",
"version": "0.15.0",
"license": "GPL-3.0-or-later",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
},
"./WebAuthnPCD": {
"types": "./dist/types/src/WebAuthnPCD.d.ts",
"import": "./dist/esm/src/WebAuthnPCD.js",
"require": "./dist/cjs/src/WebAuthnPCD.js"
}
},
"files": [
"dist",
"./README.md",
"./LICENSE"
],
"scripts": {
"lint": "eslint \"**/*.ts{,x}\"",
"build": "tsc -b tsconfig.cjs.json tsconfig.esm.json",
"postbuild": "fix-esm-import-path ./dist/esm/src",
"typecheck": "yarn tsc --noEmit",
"prepublishOnly": "yarn clean && yarn build",
"test": "jest",
"clean": "rm -rf dist node_modules *.tsbuildinfo"
},
"dependencies": {
"@pcd/passport-crypto": "0.15.0",
"@pcd/pcd-types": "0.15.0",
"@pcd/util": "0.9.0",
"@simplewebauthn/browser": "^7.2.0",
"@simplewebauthn/server": "^7.2.0",
"@simplewebauthn/typescript-types": "^7.0.0",
"json-bigint": "^1.0.0",
"typescript": "^5.3.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@pcd/eslint-config-custom": "0.15.0",
"@pcd/tsconfig": "0.15.0",
"@types/jest": "^29.5.0",
"@types/json-bigint": "^1.0.1",
"eslint": "^8.57.0",
"fix-esm-import-path": "^1.10.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
},
"publishConfig": {
"access": "public"
}
}