UNPKG

@myria/crypto-js

Version:

Myria's Crypto Library for common cryptographic functions

88 lines (87 loc) 2.56 kB
{ "name": "@myria/crypto-js", "version": "0.1.2-alpha", "description": "Myria's Crypto Library for common cryptographic functions", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "compile": "tsc -b ./configs/tsconfig.cjs.json ./configs/tsconfig.esm.json ./configs/tsconfig.types.json", "prebuild": "rm -rf ./dist", "build": "tsc", "pretest": "rimraf coverage", "test": "jest --config ./configs/jest.config.ts", "lint": "eslint \"{src,tests}/**/*.ts\" --config ./configs/.eslintrc.cjs", "lint:fix": "npm run lint -- --fix", "prettier:format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"configs/**/*\" --config configs/.prettierrc", "prepare": "husky", "typedoc": "typedoc --options ./configs/typedoc.json", "typedoc:serve": "npm run typedoc && http-server ./docs --cors -p 8080 -c-1" }, "include": [ "src" ], "exclude": [ "node_modules", "**/*.test.ts", "*github" ], "repository": { "type": "git", "url": "git+https://github.com/myria-libs/crypto-js.git" }, "keywords": [ "myria", "cryptographic", "crypto-js", "crypto-typescript", "signature" ], "author": "@myria", "license": "UNLICENSED", "bugs": { "url": "https://github.com/myria-libs/crypto-js/issues" }, "homepage": "https://github.com/myria-libs/crypto-js#readme", "devDependencies": { "@types/jest": "^29.5.11", "@types/md5": "^2.3.5", "@types/node": "^20.14.10", "@typescript-eslint/eslint-plugin": "^6.20.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-prettier": "^5.1.3", "http-server": "^14.1.1", "husky": "^9.1.5", "jest": "^29.7.0", "lint-staged": "^15.2.1", "node-notifier": "^10.0.1", "npm-run-all": "^4.1.5", "prettier": "3.2.4", "prettier-plugin-organize-imports": "^4.0.0", "rimraf": "^5.0.5", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typedoc": "^0.26.6", "typescript": "5.3" }, "lint-staged": { "**/*": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"configs/**/*\" --config configs/.prettierrc --ignore-unknown" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "@starkware-industries/starkware-crypto-utils": "^0.1.1-dev.1", "bn.js": "^5.2.1", "enc-utils": "^3.0.0", "jest": "^29.7.0", "md5": "^2.3.0" }, "husky": { "hooks": { "pre-commit": "npm run lint", "pre-push": "npm run test" } } }