harb/kraiken-lib/package.json
johba b4c829e4d6 fix/podman-postgres-integration (#37)
resolves #25

Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: johba <johba@harb.eth>
Reviewed-on: https://codeberg.org/johba/harb/pulls/37
2025-10-01 20:26:49 +02:00

81 lines
2 KiB
JSON

{
"name": "kraiken-lib",
"version": "0.2.0",
"description": "helper functions and snatch selection",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"compile": "graphql-codegen",
"watch": "graphql-codegen -w"
},
"dependencies": {
"@apollo/client": "^3.9.10",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/client-preset": "^4.2.5",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^24.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./helpers": {
"types": "./dist/helpers.d.ts",
"require": "./dist/helpers.js",
"import": "./dist/helpers.js"
},
"./ids": {
"types": "./dist/ids.d.ts",
"require": "./dist/ids.js",
"import": "./dist/ids.js"
},
"./taxRates": {
"types": "./dist/taxRates.d.ts",
"require": "./dist/taxRates.js",
"import": "./dist/taxRates.js"
},
"./snatch": {
"types": "./dist/snatch.d.ts",
"require": "./dist/snatch.js",
"import": "./dist/snatch.js"
},
"./staking": {
"types": "./dist/staking.d.ts",
"require": "./dist/staking.js",
"import": "./dist/staking.js"
},
"./subgraph": {
"types": "./dist/subgraph.d.ts",
"require": "./dist/subgraph.js",
"import": "./dist/subgraph.js"
},
"./abis": {
"types": "./dist/abis.d.ts",
"require": "./dist/abis.js",
"import": "./dist/abis.js"
}
}
}