-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
60
61
62
63
64
65
66
{
"name": "@nillion/nilql",
"version": "0.0.0-alpha.10",
"description": "Library for working with encrypted data within NilDB queries and replies.",
"license": "MIT",
"homepage": "https://github.com/nillionnetwork/nilql-ts",
"bugs": {
"url": "https://github.com/nillionnetwork/nilql-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nillionnetwork/nilql-ts.git"
},
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"lint": "biome check",
"typecheck": "tsc",
"exportscheck": "attw --pack .",
"install-hooks": "lefthook install"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"libsodium-wrappers-sumo": "^0.7.15",
"bigint-crypto-utils": "^3.3.0",
"paillier-bigint": "^3.4.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@types/libsodium-wrappers": "^0.7.14",
"@types/libsodium-wrappers-sumo": "^0.7.8",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"coveralls": "^3.1.1",
"lefthook": "^1.10.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"files": ["dist"],
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}