-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "k-mosaic",
"version": "1.0.3",
"description": "kMOSAIC: A Novel Post-Quantum Cryptographic Algorithm with Heterogeneous Hardness",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"bin": {
"k-mosaic-cli": "./lib/k-mosaic-cli.js"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"test": "bun test --coverage",
"bench": "bun run benchmarks/index.ts",
"example": "bun run examples/basic.ts",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"actions": "DOCKER_HOST=$(docker context inspect --format '{{.Endpoints.docker.Host}}') act",
"build": "tsc --project tsconfig.build.json",
"build:bun": "bun build src/index.ts --outdir lib --target bun",
"clean": "rm -rf lib/",
"prepublishOnly": "bun run clean && bun run build",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"cryptography",
"post-quantum",
"lattice",
"tensor",
"graph",
"kem",
"signature"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/k-mosaic.git"
},
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"dependencies": {
"commander": "^14.0.2"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
}
}