petcrypt-js-lite
Version:
Universal sdk for PET functionalities
54 lines (53 loc) • 1.2 kB
JSON
{
"name": "petcrypt-js-lite",
"version": "1.0.9",
"description": "Universal sdk for PET functionalities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:ts",
"build:ts": "tsc"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./constants": {
"types": "./dist/constants/index.d.ts",
"default": "./dist/constants/index.js"
},
"./tokens": {
"types": "./dist/tokens/index.d.ts",
"default": "./dist/tokens/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
}
},
"keywords": [
"petcrypt-js",
"encryption",
"tee",
"coprocessor"
],
"author": "encifher@rizelabs.io",
"license": "MIT",
"dependencies": {
"axios": "^1.7.9",
"crypto-js": "^4.2.0",
"elliptic": "^6.6.1",
"ethers": "^6.14.1"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.15.18"
}
}