forked from blyssprivacy/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
{
"author": "Samir Menon <[email protected]>",
"name": "@blyss/sdk",
"version": "0.1.9",
"description": "Blyss SDK, enabling private retrievals from Blyss buckets",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./cjs": "./dist/cjs/index.cjs",
"./node": "./dist/cjs/index.cjs"
},
"sideEffects": true,
"homepage": "https://github.com/blyssprivacy/sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/blyssprivacy/sdk.git"
},
"keywords": [
"privacy",
"cryptography",
"crypto",
"fhe",
"homomorphic",
"homomorphic-encryption",
"rust",
"wasm",
"javascript",
"react"
],
"license": "MIT",
"scripts": {
"clean": "rimraf dist pkg",
"build": "webpack",
"start": "webpack-dev-server --open",
"test": "jest",
"e2e-tests": "npm link && cd lib/server && cargo build --release && cd ../../e2e-tests && npm link @blyss/sdk && npx ts-node main.ts ../lib/server/target/release/server params",
"api-tests": "npm run --silent build && npm link && cd e2e-tests && npm link @blyss/sdk && npx ts-node api.ts",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@jest/globals": "^29.2.2",
"@types/jest": "^29.2.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.4.2",
"rimraf": "^3.0.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}