-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.93 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@xyo-network/sdk-xyo-typechain",
"version": "3.2.3",
"bugs": {
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-typechain/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-typechain.git"
},
"license": "LGPL-3.0-or-later",
"author": {
"name": "XYO Development Team",
"email": "[email protected]",
"url": "https://xyo.network"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"node": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.mjs"
},
"browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.mjs"
}
},
"./package.json": "./package.json"
},
"module": "dist/node/index.mjs",
"types": "dist/node/index.d.ts",
"workspaces": [
"packages/**/*"
],
"scripts": {
"build": "yarn xy clean && yarn compile",
"compile": "yarn workspaces foreach --all --topological-dev run package-compile",
"deploy": "yarn deploy-patch",
"deploy-common": "yarn build && yarn version apply --all && yarn workspaces foreach -pAtv npm publish",
"deploy-major": "yarn workspaces foreach --all version major --deferred && yarn deploy-common",
"deploy-minor": "yarn workspaces foreach --all version minor --deferred && yarn deploy-common",
"deploy-next": "yarn workspaces foreach --all version minor --deferred && yarn build && yarn version apply --all --prerelease && yarn workspaces foreach -ptv npm publish --tag next",
"deploy-next-major": "yarn workspaces foreach --all version major --deferred && yarn build && yarn version apply --all --prerelease && yarn workspaces foreach -ptv npm publish --tag next",
"deploy-patch": "yarn workspaces foreach --all version patch --deferred && yarn deploy-common"
},
"dependencies": {
"@xyo-network/open-zeppelin-typechain": "workspace:^",
"@xyo-network/typechain": "workspace:^",
"@xyo-network/uniswap-typechain": "workspace:^",
"@xyo-network/world-typechain": "workspace:^"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.7.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@xylabs/eslint-config": "3.15.16",
"@xylabs/eslint-config-flat": "^4.0.7",
"@xylabs/ts-scripts-yarn3": "^4.0.7",
"@xylabs/tsconfig": "^4.0.7",
"eslint": "^9.9.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^2.0.1",
"eslint-plugin-workspaces": "^0.10.1",
"jest": "^29.7.0",
"solc": "0.8.26",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.9.0",
"yarn": "4.0.2"
},
"publishConfig": {
"access": "public"
}
}