UNPKG

@maverick0351/odin-protocol-js

Version:

JavaScript/TypeScript SDK for ODIN v1.0 state capsule protocol

89 lines (88 loc) 2.19 kB
{ "name": "@maverick0351/odin-protocol-js", "version": "0.1.0", "description": "JavaScript/TypeScript SDK for ODIN v1.0 state capsule protocol", "main": "dist/index.js", "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, "scripts": { "build": "tsc", "build:watch": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "prepare": "npm run build", "prepublishOnly": "npm run test && npm run lint", "preversion": "npm run lint", "version": "npm run build && git add -A src", "postversion": "git push && git push --tags" }, "keywords": [ "odin", "protocol", "ai", "state", "capsule", "blockchain", "consciousness", "distributed" ], "author": "ODIN Protocol Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/maverick0351/odin-protocol-js.git" }, "bugs": { "url": "https://github.com/maverick0351/odin-protocol-js/issues" }, "homepage": "https://github.com/maverick0351/odin-protocol-js#readme", "files": [ "dist/**/*", "README.md" ], "dependencies": { "msgpack": "^1.0.3", "blake3": "^2.1.7", "crc": "^4.3.2", "tweetnacl": "^1.0.3" }, "devDependencies": { "@types/jest": "^29.5.5", "@types/node": "^20.6.3", "@typescript-eslint/eslint-plugin": "^6.7.2", "@typescript-eslint/parser": "^6.7.2", "eslint": "^8.49.0", "jest": "^29.7.0", "ts-jest": "^29.1.1", "typescript": "^5.2.2" }, "engines": { "node": ">=16.0.0" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "testMatch": [ "**/__tests__/**/*.test.ts" ] }, "eslintConfig": { "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], "extends": [ "eslint:recommended" ], "env": { "node": true, "es2022": true }, "rules": { "@typescript-eslint/no-unused-vars": "off", "no-unused-vars": "off" } } }