Files
mono/components/sdk/package.json
T
2026-07-17 13:58:44 +00:00

82 lines
2.1 KiB
JSON

{
"name": "@coopenomics/sdk",
"type": "module",
"version": "2026.7.17-1",
"private": false,
"packageManager": "pnpm@9.9.0",
"description": "TypeScript SDK для работы с API кооператива",
"author": "Alex Ant <dacom.dark.sun@gmail.com>",
"license": "MIT",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prebuild": "pnpm run typecheck",
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "pnpm run docs && nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest run --testTimeout 60000",
"typecheck": "tsc --noEmit",
"docs": "esno scripts/generate-index-comments.ts && typedoc",
"update:comments": "esno scripts/generate-index-comments.ts"
},
"dependencies": {
"@wharfkit/antelope": "^1.1.1",
"@wharfkit/contract": "^1.1.5",
"@wharfkit/session": "^1.4.0",
"@wharfkit/wallet-plugin-privatekey": "^1.1.0",
"canonicalize": "^2.0.0",
"cooptypes": "workspace:*",
"graphql": "^16.9.0",
"graphql-request": "^7.1.2",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.16.0",
"isomorphic-ws": "^5.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.3.2",
"@antfu/ni": "^0.23.0",
"@antfu/utils": "^0.7.10",
"@types/node": "^22.5.4",
"@types/ws": "^8.5.13",
"bumpp": "^9.5.2",
"eslint": "^9.9.1",
"esno": "^4.7.0",
"glob": "^11.0.0",
"lint-staged": "^15.2.10",
"pnpm": "^9.9.0",
"simple-git-hooks": "^2.11.1",
"typedoc": "^0.25.13",
"typedoc-plugin-expand-object-like-types": "^0.1.2",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vite": "^5.4.3",
"vitest": "^2.0.5"
},
"gitHead": "b05c17bee481d90c4cd82aa2a34ac428f8263a5f"
}