-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "vwbl-sdk.js",
"description": "VWBL SDK for TypeScript",
"version": "1.0.0",
"repository": "https://github.com/VWBL/VWBL-SDK.git",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**"
]
},
"scripts": {
"build:all": "nx run-many --target=build --all",
"build:core": "nx build vwbl-core",
"build:evm": "nx build vwbl-sdk",
"build:xrpl": "nx build vwbl-sdk-xrpl",
"lint:all": "npm run lint -ws",
"lint:core": "npm run lint -w vwbl-core",
"lint:evm": "npm run lint -w vwbl-sdk",
"format:all": "npm run format -ws",
"format:core": "npm run format -w vwbl-core",
"format:evm": "npm run format -w vwbl-sdk",
"test:evm": "npm run test -w vwbl-sdk",
"publish:core": "nx release publish --projects vwbl-core",
"publish:evm": "nx release publish --projects vwbl-sdk",
"publish:xrpl": "nx release publish --projects vwbl-sdk-xrpl"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@nx/js": "19.3.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^8.57.0",
"nx": "19.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"nx": {},
"dependencies": {
"dotenv": "^16.4.5"
}
}