-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "@harmony-dev/harmony-web-sdk",
"version": "0.0.3-alpha.6",
"description": "A Node SDK for Harmony, adapted to work for the web",
"keywords": [
"harmony",
"chat-client",
"grpc"
],
"author": "Harmony Development",
"license": "GPL-3.0",
"homepage": "https://github.com/harmony-development/harmony-web-sdk#readme",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build:fast": "rimraf dist && etsc",
"build": "rimraf dist && tsc",
"regen": "buf generate git://github.com/harmony-development/protocol.git#branch=main",
"prepublish": "npm run build",
"test": "vitest",
"prepare": "husky install",
"prettify": "eslint --fix \"**/*.{vue,ts,js}\""
},
"dependencies": {
"@harmony-dev/transport-hrpc": "^1.0.9",
"@protobuf-ts/runtime": "^2.1.0",
"@protobuf-ts/runtime-rpc": "^2.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.14.2",
"@babel/preset-env": "^7.16.7",
"@protobuf-ts/plugin": "^2.1.0",
"@protobuf-ts/protoc": "^2.1.0",
"@types/node": "^17.0.5",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"nano-staged": "^0.5.0",
"node-fetch": "^3.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"vitest": "^0.0.124",
"whatwg-fetch": "^3.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harmony-development/harmony-web-sdk.git"
},
"bugs": {
"url": "https://github.com/harmony-development/harmony-web-sdk/issues"
}
}