-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
109 lines (109 loc) · 3.09 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@arcana/auth",
"version": "1.0.11",
"description": "Arcana Auth",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"jsdelivr": "dist/standalone/auth.umd.js",
"unpkg": "dist/standalone/auth.umd.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"types": "dist/types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "jest",
"docs": "typedoc --options typedoc.json",
"htmldocs": "typedoc --options typedochtml.json",
"clean": "run-p clean:dist clean:types",
"clean:dist": "rimraf dist/",
"clean:types": "rimraf types/",
"build": "run-s clean build:sdk ",
"build:sdk": "run-p build:esm build:umd build:ts",
"build:esm": "rollup --config rollup.es.config.js",
"build:umd": "rollup --config rollup.umd.config.js",
"build:ts": "tsc --project tsconfig.json --emitDeclarationOnly",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ext .ts src",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"author": "makyl",
"license": "MIT",
"keywords": [
"oauth",
"social",
"authentication",
"passwordless",
"sign up",
"login",
"web3",
"encrypt",
"wallet"
],
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^27.4.1",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^29.0.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tsdoc": "^0.2.16",
"events": "^3.3.0",
"husky": ">=6",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.2.0",
"lint-staged": ">=10",
"node-stdlib-browser": "^1.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"preact": "^10.11.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-postcss": "^4.0.2",
"@rollup/plugin-terser": "^0.4.4",
"ts-jest": "^29.0.3",
"typedoc": "^0.26.3",
"typedoc-plugin-extras": "^3.0.0",
"typedoc-plugin-markdown": "^3.12.1",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-rename-defaults": "^0.7.1",
"typedoc-theme-hierarchy": "^5.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@metamask/safe-event-emitter": "^2.0.0",
"@solana/web3.js": "^1.87.3",
"bs58": "^5.0.0",
"eth-rpc-errors": "^4.0.3",
"penpal": "^6.0.1",
"validator": "^13.11.0"
},
"resolutions": {
"terser": "^5.15.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{js,css,md,ts}": "prettier --write"
}
}