-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
43 lines (43 loc) · 1.38 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
{
"name": "@virgilsecurity/e3kit-node",
"version": "3.0.5",
"description": "End-to-end encryption with multiple device support powered by Virgil Security",
"main": "./dist/node.cjs.js",
"module": "./dist/node.es.js",
"typings": "./dist/types/src/index.d.ts",
"files": [
"dist",
"declaration.d.ts"
],
"repository": "https://github.com/VirgilSecurity/virgil-e3kit-js/tree/master/packages/e3kit-node",
"author": "Virgil Security Inc. <[email protected]>",
"license": "BSD-3-Clause",
"scripts": {
"build": "rollup -c",
"clean": "rimraf .rpt2_cache dist",
"prepare": "npm run clean && npm run build"
},
"dependencies": {
"@types/leveldown": "^4.0.3",
"@types/mkdirp": "^1.0.2",
"@virgilsecurity/e3kit-base": "^3.0.6",
"@virgilsecurity/pythia-crypto": "^2.1.0",
"leveldown": "^6.1.1",
"mkdirp": "^1.0.4",
"virgil-crypto": "^5.1.2",
"virgil-sdk": "^6.2.0"
},
"devDependencies": {
"@rollup/plugin-json": "^5.0.0",
"builtin-modules": "^3.3.0",
"rimraf": "^3.0.2",
"rollup": "^3.11.0",
"rollup-plugin-license": "^2.8.1",
"rollup-plugin-re": "^1.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
}
}