mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
41 lines
953 B
JSON
41 lines
953 B
JSON
{
|
|
"name": "@standardnotes/sncrypto-node",
|
|
"version": "1.13.0",
|
|
"engines": {
|
|
"node": ">=18.0.0 <19.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",
|
|
"build": "tsc --build",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "jest spec"
|
|
},
|
|
"dependencies": {
|
|
"@standardnotes/sncrypto-common": "^1.9.0",
|
|
"reflect-metadata": "^0.1.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.1.1",
|
|
"@types/node": "^18.11.9",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.1.2",
|
|
"regenerator-runtime": "^0.13.9",
|
|
"ts-jest": "^29.0.3",
|
|
"ts-loader": "^9.2.6",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|