-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.96 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.96 KB
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
{
"name": "@devprotocol/khaos-core",
"version": "1.6.0",
"description": "Core library for Khaos",
"main": "dist/index.js",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"types": "./dist/khaos-core.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": "aggre",
"license": "MPL-2.0",
"dependencies": {
"@azure/functions": "^3.0.0",
"@devprotocol/util-ts": "4.0.0",
"@ethersproject/abi": "^5.1.0",
"jsonwebtoken": "^9.0.0",
"ramda": "^0.32.0"
},
"devDependencies": {
"@ava/typescript": "4.1.0",
"@rollup/plugin-multi-entry": "7.1.0",
"@rollup/plugin-typescript": "12.3.0",
"@types/dotenv": "8.2.3",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "24.12.2",
"@types/ramda": "0.31.1",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"ava": "5.3.1",
"dotenv": "16.6.1",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-functional": "4.4.1",
"husky": "8.0.3",
"prettier": "3.8.3",
"rimraf": "5.0.10",
"rollup": "3.30.0",
"rollup-plugin-dts": "6.3.0",
"typescript": "5.9.3"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/khaos-core.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/dev-protocol/khaos-core/issues"
},
"homepage": "https://github.com/dev-protocol/khaos-core#readme"
}