-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
85 lines (85 loc) · 3.53 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@openmined/psi.js",
"version": "2.0.5",
"description": "Private Set Intersection for JavaScript",
"repository": {
"type": "git",
"url": "https://github.com/OpenMined/PSI/tree/master/private_set_intersection/javascript"
},
"license": "Apache-2.0",
"keywords": [
"psi",
"psi.js",
"private set intersection",
"private join and compute"
],
"main": "psi_wasm_node.js",
"browser": "psi_wasm_web.js",
"module": "psi_wasm_web.js",
"files": [
"**/*"
],
"types": "combined_wasm_node.d.ts",
"scripts": {
"benchmark": "node -r esm private_set_intersection/javascript/benchmark.js",
"build": "npm run build:psi",
"build:psi": "bash private_set_intersection/javascript/scripts/build-psi-wasm.sh && npm run build:copy",
"build:benchmark": "bash private_set_intersection/javascript/scripts/build-benchmark-wasm.sh && npm run build:copy",
"build:copy": "bash private_set_intersection/javascript/scripts/build-copy.sh",
"build:proto": "bash private_set_intersection/javascript/scripts/build-proto.sh",
"postbuild": "node -r esm private_set_intersection/javascript/version.js",
"prerollup": "bash private_set_intersection/javascript/scripts/prerollup.sh",
"rollup": "NODE_OPTIONS=--max_old_space_size=16384 rollup -c",
"postrollup": "bash private_set_intersection/javascript/scripts/postrollup.sh",
"prepublishOnly": "echo 'Please run \"npm run publish\" instead' && exit 1",
"publish:test": "npm --dry-run publish --access=public private_set_intersection/javascript/dist/openmined-psi.js-*.tgz",
"publish": "npm publish --access=public private_set_intersection/javascript/dist/openmined-psi.js-*.tgz",
"clean": "bazel clean --expunge && rm -rf private_set_intersection/javascript/bin/* && rm -rf private_set_intersection/javascript/tsc-out/* && rm -rf private_set_intersection/javascript/dist/*",
"compile": "tsc",
"format": "prettier --write private_set_intersection/javascript/src",
"lint": "eslint --fix 'private_set_intersection/javascript/src/**/*.{js,ts}'",
"test": "jest private_set_intersection/javascript/src/",
"test:js": "jest private_set_intersection/javascript/tsc-out/__tests__/",
"coverage": "jest private_set_intersection/javascript/src --coverage"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.25.4",
"@bazel/bazelisk": "^1.22.0",
"@bazel/typescript": "^5.8.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.7.0",
"buffer": "^6.0.3",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"esm": "^3.2.25",
"jest": "^29.7.0",
"path": "^0.12.7",
"prettier": "^3.3.3",
"rollup": "^4.22.5",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.11.3",
"google-protobuf": "^3.21.4",
"protoc-gen-js": "^3.21.2",
"protoc-gen-ts": "^0.8.7",
"ts-protoc-gen": "^0.15.0"
}
}