-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "@holo-host/web-sdk",
"version": "0.6.20-prerelease",
"description": "Standard development kit for creating Web UIs that work with Holo Hosting.",
"main": "dist/holo_hosting_web_sdk",
"module": "dist/holo_hosting_web_sdk.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run bundle",
"bundle": "npx webpack --mode production --output-filename holo_hosting_web_sdk.js",
"test": "npx vitest",
"prepublish": "npm run build"
},
"author": "Holo Ltd.",
"contributors": [
"Matthew Brisebois <matthew.brisebois@holo.host>",
"Robbie Carlton <robbie.carlton@gmail.com>",
"Lisa Jetton <lisa.jetton@holo.host>",
"timotree3 <timorcb@gmail.com>",
"zo-el <joel.ulahanna@holo.host>"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Holo-Host/web-sdk/"
},
"files": [
"README.md",
"dist/*",
"src/*"
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.21.0",
"@holo-host/chaperone": "^8.0.1",
"@types/node": "^12.20.55",
"@whi/stdlog": "^0.3.0",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"jsdom": "^22.1.0",
"puppeteer": "^2.1.1",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"vitest": "^0.34.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@holo-host/comb": "0.3.2",
"@holochain/client": "^0.18.0-dev.2",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"semver": "^7.5.1",
"stream-browserify": "^3.0.0"
}
}