-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "@privicy/onepassword-web-client",
"version": "2.0.2",
"description": "Library to access 1password web vaults. Fully compatible in both browser and server environment.",
"main": "dist/onepassword.node.js",
"browser": "dist/onepassword.browser.js",
"types": "dist/onepassword.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prepare": "webpack && rm -r ./dist/services/",
"build": "webpack && rm -r ./dist/services/",
"start:dev": "webpack-dev-server",
"start:node": "webpack && node dist/onepassword.node.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/privicy/onepassword-web-client.git"
},
"keywords": [
"1Password",
"web-api",
"api",
"1password-vault",
"1password-api",
"1password"
],
"author": "Sibtain Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/privicy/onepassword-web-client/issues"
},
"homepage": "https://github.com/privicy/onepassword-web-client#readme",
"dependencies": {
"@types/buffer-xor": "^2.0.0",
"@types/jsbn": "^1.2.29",
"@types/lodash": "^4.14.138",
"@types/node-rsa": "^1.0.0",
"@types/urlsafe-base64": "^1.0.28",
"buffer-xor": "^2.0.2",
"futoin-hkdf": "^1.2.0",
"jsbn": "^1.1.0",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"node-rsa": "^1.0.5",
"urlsafe-base64": "^1.0.0"
},
"devDependencies": {
"@types/node": "^12.7.5",
"dts-bundle-webpack": "^1.0.2",
"ts-loader": "^6.1.0",
"typescript": "^3.6.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0",
"webpack-node-externals": "^1.7.2"
}
}