-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "xxdk-wasm",
"version": "0.3.22",
"description": "WebAssembly bindings for xxDK.",
"main": "dist/bundle.js",
"directories": {
"test": "test",
"src": "src"
},
"files": [
"dist/*"
],
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "make binaries && npm run clean && webpack --mode production",
"devbuild": "npm run clean && webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.xx.network/elixxir/xxdk-wasm.git"
},
"keywords": [
"xx",
"xxnetwork",
"mixnet",
"privacy"
],
"author": "Richard T. Carback III",
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^20.11.17",
"babel-loader": "^9.1.3",
"safe-buffer": "^5.2.1",
"ts-loader": "^9.5.1",
"tsc": "^2.0.4",
"typescript": "^5.3.3",
"undici-types": "^6.5.0",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ts.data.json": "^2.2.0"
}
}