-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 861 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 861 Bytes
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
{
"name": "@cardinal-cryptography/ecies-encryption-lib",
"author": "CardinalCryptography",
"version": "0.2.0",
"description": "ECIES encryption library (proxy to ts/lib)",
"main": "ts/lib/dist/index.js",
"types": "ts/lib/dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Cardinal-Cryptography/ecies-encryption-lib.git",
"directory": "ts/lib"
},
"files": [
"ts/lib"
],
"exports": {
".": {
"import": "./ts/lib/dist/index.js",
"require": "./ts/lib/dist/index.js",
"types": "./ts/lib/dist/index.d.ts"
}
},
"scripts": {
"build": "pnpm --filter ./ts/lib... build",
"prepare": "pnpm run build",
"unit-test": "tsx tests/ts-lib-unit-test.test.ts"
},
"devDependencies": {
"@types/node": "^24.0.4",
"typescript": "^5.8.3",
"tsx": "^4.20.3"
}
}