-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.18 KB
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
{
"name": "@keeper-security/keeper-sdk-javascript",
"version": "2.1.0",
"description": "High-level wrapper for Keeper Security JavaScript SDK",
"repository": {
"type": "git",
"url": "git+https://github.com/Keeper-Security/keeper-sdk-javascript.git",
"directory": "KeeperSdk"
},
"license": "ISC",
"main": "dist/index.js",
"browser": "dist/browser.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist node_modules",
"rebuild": "npm run clean && npm install && npm run link-local && npm run build",
"link-local": "npm link ../keeperapi",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"types": "tsc --watch",
"types:ci": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@keeper-security/keeperapi": "18.2.0",
"@keeper-security/secrets-manager-core": "^17.5.0",
"asmcrypto.js": "^2.3.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/node": "^25.6.0",
"prettier": "^3.8.1"
}
}