-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.1 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
{
"name": "signumjs",
"description": "Signum Network Javascript SDK",
"keywords": [
"signum",
"signum network",
"signa",
"blockchain",
"crypto",
"cryptocurrency",
"sdk",
"lib",
"library"
],
"contributors": [
"ohager",
"blankey1337"
],
"repository": {
"type": "git",
"url": "https://github.com/signum-network/signumjs"
},
"engines": {
"node": ">=20"
},
"license": "Apache-2.0",
"private": false,
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@vitest/coverage-v8": "^2.0.5",
"nyc": "^17.0.0",
"turbo": "^2.0.14",
"typedoc": "0.26.6",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"husky": "^9.1.7"
},
"scripts": {
"compile": "turbo run compile",
"bundle": "turbo run bundle",
"doc": "typedoc",
"publish": "./publish.sh",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"posttest:ci": "./generate-coverage-report.sh",
"test:e2e": "TEST_ENV=e2e turbo run test",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]"
}