-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "root",
"repository": {
"type": "git",
"url": "git+https://github.com/streamflow-finance/js-sdk.git"
},
"keywords": [
"solana",
"token",
"vesting",
"escrow",
"stream",
"payments",
"spl",
"anchor"
],
"author": "Streamflow Labs Limited <[email protected]>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/streamflow-finance/js-sdk/issues"
},
"scripts": {
"build": "lerna run build",
"build-docs": "typedoc packages/stream/index.ts",
"pack": "lerna run pack",
"test": "lerna run test",
"lint": "lerna run lint",
"version-all": "lerna version --force-publish --no-git-tag-version --no-push",
"publish": "lerna publish from-package --yes --loglevel=verbose",
"local-publish": "lerna publish --no-git-tag-version --no-push --registry=\"http://localhost:4873/\" from-package --yes",
"local-unpublish": "lerna exec -- npm unpublish --registry=\"http://localhost:4873/\" \"\\${LERNA_PACKAGE_NAME}@\\$(npm view \\$LERNA_PACKAGE_NAME version)\"",
"local-unpublish-all": "lerna exec -- npm unpublish -f --registry=\"http://localhost:4873/\" \"\\${LERNA_PACKAGE_NAME}\"",
"prepare": "husky install",
"convert-bn": "./scripts/convertBN.sh"
},
"devDependencies": {
"@types/eslint": "^8.56.3",
"eslint": "^8.56.0",
"husky": "^8.0.0",
"lerna": "7.4.2",
"lint-staged": "^13.1.0",
"typedoc": "0.25.11",
"typescript": "^5.3.3",
"vitest": "^2.0.5"
},
"version": "4.0.1"
}