-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 980 Bytes
/
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
{
"name": "ts-ibe",
"version": "1.1.3",
"description": "A library to encrypt and decrypt data",
"source": "src/index.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"precompile": "node -p \"'export const TS_IBE_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"compile": "pnpm precompile && tsc --project tsconfig.json",
"build": "pnpm compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ibe",
"identity-based-encryption"
],
"author": "xgracias",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"@types/node": "^20.7.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@noble/bls12-381": "^1.4.0",
"@noble/hashes": "^1.3.2",
"@stablelib/chacha20poly1305": "^1.0.1",
"buffer": "^6.0.3"
}
}