Files
standardnotes-server/packages/sncrypto-node/package.json
T

41 lines
968 B
JSON

{
"name": "@standardnotes/sncrypto-node",
"version": "1.10.0",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"description": "SNCrypto for Node.js",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"test:unit": "jest spec"
},
"dependencies": {
"@standardnotes/sncrypto-common": "^1.9.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"regenerator-runtime": "^0.13.9",
"ts-jest": "^28.0.5",
"ts-loader": "^9.2.6"
}
}