generated from dev-protocol/template-repos-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.06 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
84
85
86
87
{
"name": "@devprotocol/khaos-kit",
"version": "1.4.0",
"description": "Khaos SDK for JavaScript",
"main": "dist/index.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"types": "./dist/khaos-kit.d.ts",
"files": [
"dist/*.mjs",
"dist/*.js",
"dist/*.ts",
"!**/*.test.*"
],
"scripts": {
"test": "ava",
"build": "yarn build:ts && yarn build:rollup",
"build:ts": "tsc",
"build:rollup": "rollup -c",
"watch": "tsc -w",
"pretest": "yarn build:ts",
"prebuild": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"prepack": "yarn test && yarn build",
"prepare": "husky install"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"@devprotocol/khaos-core": "1.6.0",
"@devprotocol/khaos-functions": "0.4.2",
"@ethersproject/contracts": "5.7.0",
"bent": "^7.3.12",
"ramda": "^0.30.0",
"type-fest": "^2.0.0"
},
"devDependencies": {
"@ava/typescript": "3.0.1",
"@rollup/plugin-multi-entry": "4.1.0",
"@rollup/plugin-typescript": "8.5.0",
"@types/bent": "7.3.8",
"@types/dotenv": "8.2.0",
"@types/node": "20.16.5",
"@types/ramda": "0.30.2",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ava": "4.3.3",
"eslint": "8.57.1",
"dotenv": "16.4.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-functional": "4.4.1",
"husky": "7.0.4",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"rollup": "2.79.1",
"rollup-plugin-dts": "4.2.3",
"sinon": "15.2.0",
"typescript": "4.9.5"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/khaos-kit-js.git"
},
"bugs": {
"url": "https://github.com/dev-protocol/khaos-kit-js/issues"
},
"homepage": "https://github.com/dev-protocol/khaos-kit-js#readme"
}