-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "@orionprotocol/contracts",
"version": "1.23.15",
"type": "module",
"description": "Orion Protocol contracts typings",
"scripts": {
"lerna": "lerna",
"typechain:all": "lerna run typechain",
"clean:all": "lerna run clean",
"prebuild": "npm run clean:all && npm run typechain:all",
"build": "npm run build-prepare && npm run build-esm && npm run build-cjs",
"build-prepare": "./prepare.sh",
"build-esm": "tsc",
"build-cjs": "tsc --project tsconfig.cjs.json",
"postpublish": "npm run publish-npm",
"publish-npm": "npm publish --access public --ignore-scripts --@orionprotocol:registry='https://registry.npmjs.org'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orionprotocol/contracts.git"
},
"keywords": [
"orion",
"protocol",
"contracts",
"typescript",
"typed"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/orionprotocol/contracts/issues"
},
"homepage": "https://github.com/orionprotocol/contracts#readme",
"devDependencies": {
"lerna": "^7.0.2",
"rimraf": "^5.0.1",
"typechain": "^8.3.1"
},
"files": [
"lib",
"abis"
],
"workspaces": [
"packages/*"
]
}