UNPKG

@nuwa-ai/cap-kit

Version:
97 lines 2.46 kB
{ "name": "@nuwa-ai/cap-kit", "version": "0.5.3", "description": "caps", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "publishConfig": { "access": "public" }, "files": [ "dist/**/*" ], "keywords": [ "did", "identity", "web3", "nuwa", "nip-1", "nip-3", "cadop", "custodian", "onboarding" ], "author": "Nuwa Community", "license": "Apache-2.0", "repository": { "type": "git", "url": "git+https://github.com/nuwa-protocol/nuwa.git", "directory": "nuwa-kit/typescript/packages/identity-kit" }, "bugs": { "url": "https://github.com/nuwa-protocol/nuwa/issues" }, "homepage": "https://github.com/nuwa-protocol/nuwa/tree/main/nuwa-kit/typescript/packages/identity-kit#readme", "devDependencies": { "@jest/globals": "^29.7.0", "@types/jest": "^29.5.14", "@types/js-yaml": "^4.0.9", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^7.3.1", "@typescript-eslint/parser": "^7.3.1", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "jest": "^29.7.0", "prettier": "^3.2.5", "rimraf": "^5.0.5", "ts-jest": "29.1.1", "tsup": "^8.2.3", "typescript": "^5.3.2" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.13.1", "@noble/curves": "^1.9.1", "@noble/hashes": "^1.8.0", "@roochnetwork/rooch-sdk": "^0.3.6", "ai": "^4.3.16", "js-yaml": "^4.1.0", "multiformats": "^9.9.0", "zod": "^3.25.67", "@nuwa-ai/identity-kit": "0.5.1" }, "tsup": { "entry": [ "src/index.ts" ], "format": [ "esm", "cjs" ], "dts": true, "splitting": false, "sourcemap": true, "clean": true }, "scripts": { "dev": "tsup --watch", "build": "tsup", "test": "jest --config=jest.config.json", "test:coverage": "jest --config=jest.config.json --coverage", "test:watch": "jest --config=jest.config.json --watch", "clean": "rimraf dist", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"" } }