@usedigisign/node-sdk
Version:
Node.js library for the DigiSign API
82 lines (81 loc) • 2 kB
JSON
{
"name": "@usedigisign/node-sdk",
"version": "0.1.1",
"description": "Node.js library for the DigiSign API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"private": false,
"files": [
"dist/**"
],
"dependencies": {
"axios": "^1.6.2",
"class-validator": "^0.14.0",
"lodash": "^4.17.21"
},
"scripts": {
"build": "tsup lib/index.ts --format esm,cjs --dts",
"dev": "nodemon example/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --fix --ext .ts ./src",
"format:check": "prettier --check \"**/*.{ts,tsx}\"",
"format": "prettier --write .",
"pub": "npm run build && npm publish --access public"
},
"engines": {
"node": ">=18"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"author": "DigiSign",
"license": "MIT",
"bugs": {
"url": "https://github.com/calcot/digisign-node/issues"
},
"homepage": "https://github.com/calcot/digisign-node#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"directories": {
"example": "example",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calcot/digisign-node.git"
},
"keywords": [
"Digital",
"Signature",
"Signature",
"Sign",
"E-Signature"
]
}