-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@yeez-tech/meta-encryptor",
"version": "5.0.7",
"description": "Data Seal/Unseal for Fidelius",
"main": "./build/commonjs/index.node.cjs",
"module": "./build/es/index.browser.js",
"browser": "./build/es/index.browser.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"browser": {
"import": "./build/es/index.browser.js",
"default": "./build/es/index.browser.js"
},
"node": {
"import": "./build/es/index.node.js",
"require": "./build/commonjs/index.node.cjs"
},
"import": "./build/es/index.browser.js",
"require": "./build/commonjs/index.node.cjs",
"default": "./build/es/index.browser.js"
}
},
"type": "module",
"files": [
"build",
"index.d.ts",
"README.md",
"README.en.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf build && rollup -c",
"test:clean": "node scripts/cleanup-test-artifacts.cjs",
"test:node": "jest --config jest.config.node.cjs",
"test:browser": "npm run build && npm run gen:fixtures && node --experimental-vm-modules node_modules/.bin/jest --config jest.config.browser.mjs",
"gen:fixtures": "node --experimental-vm-modules scripts/generate-fixtures.mjs && node --experimental-vm-modules scripts/generate-browser-unsealer-fixture.mjs",
"test": "npm run test:node && npm run test:browser",
"serve:example": "node example/http/static-server.js",
"gen:sealed": "node example/http/gen-sealed-stream.js",
"version": "changeset version",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YeeZTech/meta-encryptor.git"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@jest/transform": "^30.2.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"axios": "^1.13.2",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"bytebuffer": "^5.0.1",
"csv-parser": "^3.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"rollup": "^4.54.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"typescript": "^5.9.3",
"uuidv7": "^1.1.0"
},
"author": "contact@yeez.tech",
"license": "MIT",
"dependencies": {
"aes-js": "4.0.0-beta.5",
"buffer": "^6.0.3",
"core-js": "^3.47.0",
"@noble/hashes": "^1.7.1",
"loglevel": "^1.9.2",
"memory-streams": "^0.1.3",
"secp256k1": "^5.0.1"
},
"optionalDependencies": {
"keccak": "^3.0.4"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"streamsaver": "^2.0.0"
},
"peerDependenciesMeta": {
"streamsaver": {
"optional": true
}
},
"engines": {
"node": "^18.0.0 || >= 18.0.0"
}
}