@zkim-platform/file-format 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@zkim-platform/file-format",
3
+ "version": "1.0.0",
4
+ "description": "Secure, encrypted file format with three-layer encryption, integrity validation, and privacy-preserving search capabilities",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE",
20
+ "CHANGELOG.md"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsup",
24
+ "build:watch": "tsup --watch",
25
+ "test": "jest",
26
+ "test:watch": "jest --watch",
27
+ "test:coverage": "jest --coverage",
28
+ "lint": "eslint src tests",
29
+ "lint:fix": "eslint src tests --fix",
30
+ "typecheck": "tsc --noEmit",
31
+ "example": "tsx examples/basic-usage.ts",
32
+ "prepublishOnly": "npm run build && npm run test && npm run typecheck"
33
+ },
34
+ "keywords": [
35
+ "encryption",
36
+ "file-format",
37
+ "zero-knowledge",
38
+ "privacy",
39
+ "searchable-encryption",
40
+ "cryptography",
41
+ "libsodium",
42
+ "zkim"
43
+ ],
44
+ "author": "ZKIM Team",
45
+ "license": "MIT",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "https://github.com/zkdotim/zkim-file-format.git"
49
+ },
50
+ "bugs": {
51
+ "url": "https://github.com/zkdotim/zkim-file-format/issues"
52
+ },
53
+ "homepage": "https://github.com/zkdotim/zkim-file-format#readme",
54
+ "dependencies": {
55
+ "@noble/curves": "^2.0.1",
56
+ "@noble/hashes": "^2.0.1",
57
+ "libsodium-wrappers-sumo": "^0.7.15"
58
+ },
59
+ "devDependencies": {
60
+ "@eslint/js": "^9.39.2",
61
+ "@types/jest": "^30.0.0",
62
+ "@types/libsodium-wrappers-sumo": "^0.7.8",
63
+ "@types/node": "^25.0.3",
64
+ "@typescript-eslint/eslint-plugin": "^8.50.1",
65
+ "@typescript-eslint/parser": "^8.50.1",
66
+ "eslint": "^9.39.2",
67
+ "jest": "^30.2.0",
68
+ "ts-jest": "^29.4.6",
69
+ "tsup": "^8.5.1",
70
+ "typescript": "^5.9.3"
71
+ },
72
+ "engines": {
73
+ "node": ">=18.0.0"
74
+ },
75
+ "publishConfig": {
76
+ "access": "public"
77
+ }
78
+ }