-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.22 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
{
"name": "@windingtree/sdk",
"version": "0.0.0",
"description": "The WindingTree market protocol SDK",
"repository": "[email protected]:windingtree/sdk.git",
"author": "Kostiantyn Smyrnov <[email protected]>",
"contributors": [
"Kostiantyn Smyrnov <[email protected]>",
"Evgenij Novikov <[email protected]>"
],
"bugs": "https://github.com/windingtree/sdk/issues",
"homepage": "https://github.com/windingtree/sdk#readme",
"keywords": [
"windingtree",
"market",
"protocol",
"libp2p",
"sdk",
"typescript",
"p2p",
"peer",
"peer-to-peer",
"network"
],
"license": "MIT",
"private": true,
"publishConfig": {
"access": "restricted"
},
"type": "module",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@libp2p/crypto": "^1.0.17",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"@vitest/ui": "^1.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.1",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"lerna": "^7.4.2",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"uint8arrays": "^5.0.0",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-node-polyfills": "^0.17.0",
"vitest": "^1.1.0"
},
"scripts": {
"prepare": "husky install",
"commit": "git-cz -S",
"build": "pnpm -r --if-present run build",
"build:ci": "pnpm -r --if-present --filter !wtmp-client-example --filter !wtmp-manager-example --filter !wtmp-server-example --filter !wtmp-node-example run build",
"lint": "pnpm -r --if-present run lint",
"lint:fix": "pnpm -r --if-present run lint:fix",
"test": "vitest run",
"coverage": "vitest run --coverage",
"gen:key": "node ./scripts/peerKey.js",
"gen:address": "node ./scripts/serverAddress.js",
"example:server": "DEBUG=* pnpm -C examples/server run start",
"example:node": "DEBUG=* pnpm -C examples/node run start",
"example:client": "pnpm -C examples/client run start",
"example:manager": "pnpm -C examples/manager run start"
}
}