-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "@alloralabs/allora-sdk",
"version": "0.1.0",
"license": "Apache-2.0",
"packageManager": "yarn@1.22.22",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/allora-network/allora-sdk-ts",
"repository": {
"type": "git",
"url": "git+https://github.com/allora-network/allora-sdk-ts.git"
},
"scripts": {
"format": "npx prettier -w ./*",
"check-format": "npx prettier --check ./*",
"build": "npx tsc",
"lint": "npx eslint **/*.ts --config eslint.config.cjs --no-warn-ignored",
"test": "npx jest",
"test:unit": "npx jest --testMatch='**/*.unit.test.ts'",
"test:integration": "npx jest --testMatch='**/*.integration.test.ts'"
},
"main": "dist/src/v2/index.js",
"types": "dist/src/v2/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": {
"import": "./dist/src/v2/index.js",
"require": "./dist/src/v2/index.js",
"types": "./dist/src/v2/index.d.ts"
}
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5"
}
}