-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
73 lines (73 loc) · 2.23 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
{
"name": "@colony/colony-js",
"description": "📜 The Colony TypeScript reference implementation",
"version": "7.2.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",
"CHANGELOG.md",
"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 colony -o ./src/contracts",
"build-docs": "typedoc",
"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",
"prepare": "npm run build-contracts",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@colony/core": "^2.3.0",
"@colony/events": "^3.0.0",
"@colony/tokens": "^0.3.0"
},
"devDependencies": {
"@colony/contractor": "^2.2.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@types/jest": "^29.5.1",
"cross-fetch": "^4.0.0",
"ethers": "^5.7.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3"
},
"peerDependencies": {
"ethers": "^5.1.3"
}
}