-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 935 Bytes
/
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
{
"name": "@session.js/ons",
"version": "1.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Viktor Shchelochkov <[email protected]> (https://hloth.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/sessionjs/ons.git"
},
"bugs": {
"url": "https://github.com/sessionjs/ons/issues"
},
"homepage": "https://github.com/sessionjs/ons#readme",
"description": "Resolve Session ONS names to Session IDs in Node.js/Bun/browser",
"type": "module",
"devDependencies": {
"@types/blake2b": "^2.1.3",
"@types/bun": "latest",
"@types/libsodium-wrappers-sumo": "^0.7.8"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"blake2b": "^2.1.4",
"libsodium-wrappers-sumo": "^0.7.13"
}
}