-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
58 lines (58 loc) · 1.81 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
{
"name": "@colony/tokens",
"description": "🪙 Colony token contract bindings",
"version": "0.3.0",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": "^16 || ^18 || ^20",
"pnpm": "^8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoinColony/colonyJS.git"
},
"author": "Christian Maniewski <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/JoinColony/colonyJS/issues"
},
"homepage": "https://docs.colony.io/develop",
"scripts": {
"build": "npm run clean && npm run compile-cjs && npm run compile-esm && npm run compile-types && npm run create-pkg-json",
"build-contracts": "contractor tokens -o ./src/contracts",
"clean": "rimraf ./dist",
"compile-cjs": "tsc -p tsconfig.build.json --module commonjs --target es2015 --outDir dist/cjs",
"compile-esm": "tsc -p tsconfig.build.json --module esnext --target es2022 --outDir dist/esm",
"compile-types": "tsc -p tsconfig.build.json --target esnext --declaration --emitDeclarationOnly --outDir dist/types",
"create-pkg-json": "../../scripts/create-pkg-json.sh",
"lint": "eslint --ext .ts src",
"typecheck": "tsc --noEmit",
"prepare": "npm run build-contracts"
},
"devDependencies": {
"@colony/core": "^2.3.0",
"@colony/contractor": "^2.2.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"ethers": "^5.7.2"
},
"peerDependencies": {
"ethers": "^5.1.3"
}
}