This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.81 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
66
67
68
69
{
"name": "othent",
"version": "1.0.646",
"description": "Merging Web2 to Web3 user logins with a familiar and simple interface",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"src/",
"LICENSE",
"package.json",
"README.md",
"rollup.config.js",
"tsconfig.json"
],
"scripts": {
"build": "rm -rf ./dist && rollup -c && dts-bundle-generator src/index.ts -o dist/index.d.ts --no-banner && dts-bundle-generator src/lib/node.ts -o dist/node.d.ts --no-banner",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Othent/package.git"
},
"author": "Lorimer Jenkins, Othent.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/Othent/package/issues"
},
"homepage": "https://othent.io",
"dependencies": {
"@auth0/auth0-spa-js": "^2.0.4",
"axios": "^1.3.4",
"crypto-js": "^4.1.1",
"debug": "^4.3.4",
"jsrsasign": "^10.8.6",
"jwk-to-pem": "^2.0.5",
"jwt-decode": "^3.1.2",
"supports-color": "^8.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/crypto-js": "^4.1.1",
"@types/jsrsasign": "^10.5.8",
"@types/jwk-to-pem": "^2.0.1",
"@types/node": "^20.2.5",
"dts-bundle-generator": "^8.0.1",
"rollup": "^3.21.6",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./node": {
"import": "./dist/node.mjs",
"require": "./dist/node.js",
"types": "./dist/node.d.ts"
}
}
}