-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.35 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
{
"name": "@hiveio/hb-auth",
"version": "0.0.1-LastGitTagPlaceholder.GitHashPlaceholder",
"description": "Auth library for browser applications that uses Beekeeper",
"license": "SEE LICENSE IN LICENSE.md",
"main": "dist/hb-auth.js",
"module": "dist/hb-auth.js",
"types": "dist/hb-auth.d.ts",
"type": "module",
"packageManager": "[email protected]+sha256.9551e803dcb7a1839fdf5416153a844060c7bce013218ce823410532504ac10b",
"scripts": {
"build": "pnpm run clean && rollup -c --bundleConfigAsCjs",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .ts",
"pretest": "playwright install chromium",
"test": "unset CI && playwright test --workers 1 --max-failures 1 --project=hbauth_testsuite",
"prebuild": "pnpm run husky && pnpm run lint",
"husky": "husky install ./.husky"
},
"repository": {
"type": "git",
"url": "https://gitlab.syncad.com/hive/hb-auth"
},
"publishConfig": {
"registry": "https://RegistryPlaceholder",
"tag": "DistTagPlaceholder"
},
"keywords": [
"beekeeper",
"hb-auth",
"blockchain",
"hive"
],
"files": [
"LICENSE.md",
"README.md",
"api.md",
"dist/hb-auth.d.ts",
"dist/hb-auth.js",
"dist/worker.js"
],
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@playwright/test": "^1.39.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"buffer": "^6.0.3",
"concat-md": "^0.5.1",
"dotenv": "^16.4.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"playwright": "^1.39.0",
"prettier": "3.0.1",
"rollup": "^4.3.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@hiveio/beekeeper": "1.27.5-rc7-stable.240510204534",
"@hiveio/wax": "0.3.8-240514120640",
"comlink": "^4.4.1",
"idb": "^7.1.1"
}
}