-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.51 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
61
62
63
64
65
{
"name": "@swan-io/srp",
"version": "0.2.6",
"license": "MIT",
"description": "A modern SRP implementation for Node.js (v15+) and web browsers",
"author": "Linus Unnebäck <linus@folkdatorn.se>",
"contributors": [
"Mathieu Acthernoene <mathieu.acthenoene@swan.io>"
],
"homepage": "https://github.com/swan-io/srp#readme",
"repository": {
"type": "git",
"url": "https://github.com/swan-io/srp.git"
},
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"srp",
"srp6a",
"authentication",
"remote",
"password"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "yarn clean && microbundle -f cjs,esm src/index.ts",
"clean": "rm -rf dist",
"dev": "microbundle watch",
"format": "prettier '**/*' -u -w",
"test": "vitest --run",
"test:watch": "vitest --watch",
"tscheck": "tsc --noEmit",
"prepack": "yarn test && yarn build"
},
"browserslist": [
">0.2%",
"not op_mini all",
"not dead"
],
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"dependencies": {
"jsbn": "^1.1.0"
},
"devDependencies": {
"@types/jsbn": "^1.2.33",
"arraybuffer-equal": "^1.0.4",
"microbundle": "^0.15.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}