-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
59
60
{
"name": "simplesrp",
"version": "0.8.0-2",
"type": "module",
"description": "Secure Remote Password implementation for Node.js, browsers and edge runtimes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest",
"build:types": "tsc -p tsconfig.lib.json",
"build:lib": "swc src --strip-leading-paths --out-dir lib",
"build": "npm run build:lib && npm run build:types"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./server": {
"types": "./lib/srp/server.d.ts",
"default": "./lib/srp/server.js"
},
"./client": {
"types": "./lib/srp/client.d.ts",
"default": "./lib/srp/client.js"
},
"./verifier": {
"types": "./lib/srp/verifier.d.ts",
"default": "./lib/srp/verifier.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zolbooo/simplesrp.git"
},
"keywords": [
"srp",
"password",
"authentication"
],
"author": "Zolboobayar Gantumur <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zolbooo/simplesrp/issues"
},
"homepage": "https://github.com/zolbooo/simplesrp#readme",
"devDependencies": {
"@edge-runtime/vm": "^3.2.0",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.5.24",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}