-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "fastify-opaque-apake",
"version": "0.2.0",
"description": "Fastify plugin to implement the OPAQUE aPAKE protocol",
"repository": "git@github.com:squirrelchat/fastify-opaque-apake.git",
"author": "Cynthia <cyyynthia@borkenware.com>",
"license": "BSD-3-Clause",
"type": "module",
"engines": {
"node": ">= 18",
"pnpm": ">= 7.24"
},
"scripts": {
"prepublishOnly": "pnpm run build",
"build": "tsc",
"test": "cross-env NODE_OPTIONS=\"--experimental-wasm-modules\" vitest"
},
"dependencies": {
"@squirrelchat/opaque-wasm-server": "^0.1.2",
"fastify-plugin": "^4.5.0"
},
"peerDependencies": {
"fastify": ">= 4.0.0"
},
"devDependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/session": "^10.2.1",
"@squirrelchat/opaque-wasm-client": "^0.1.2",
"@tsconfig/esm": "^1.0.3",
"@tsconfig/node-lts": "^18.12.1",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^18.16.1",
"cross-env": "^7.0.3",
"fastify": "^4.16.3",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"default": "./dist/core.js",
"types": "./dist/core.d.ts"
}
},
"files": [
"README.md",
"LICENSE",
"dist"
]
}