mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
- @standardnotes/analytics@2.34.0 - @standardnotes/api-gateway@1.87.0 - @standardnotes/auth-server@1.174.0 - @standardnotes/common@1.52.0 - @standardnotes/domain-core@1.41.0 - @standardnotes/domain-events-infra@1.22.0 - @standardnotes/domain-events@2.137.0 - @standardnotes/files-server@1.36.0 - @standardnotes/grpc@1.3.0 - @standardnotes/home-server@1.22.0 - @standardnotes/predicates@1.8.0 - @standardnotes/revisions-server@1.51.0 - @standardnotes/scheduler-server@1.27.5 - @standardnotes/security@1.17.0 - @standardnotes/settings@1.23.0 - @standardnotes/sncrypto-node@1.16.0 - @standardnotes/syncing-server@1.126.0 - @standardnotes/time@1.18.0 - @standardnotes/websockets-server@1.20.3
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@standardnotes/security",
|
|
"version": "1.17.0",
|
|
"engines": {
|
|
"node": ">=18.0.0 <21.0.0"
|
|
},
|
|
"description": "Security SDK for Standard Notes projects",
|
|
"main": "dist/src/index.js",
|
|
"author": "Standard Notes",
|
|
"types": "dist/src/index.d.ts",
|
|
"files": [
|
|
"dist/src/**/*.js",
|
|
"dist/src/**/*.d.ts"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"license": "AGPL-3.0-or-later",
|
|
"scripts": {
|
|
"clean": "rm -fr dist",
|
|
"prestart": "yarn clean",
|
|
"start": "tsc -p tsconfig.json --watch",
|
|
"build": "tsc --build",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "jest --coverage --no-cache"
|
|
},
|
|
"dependencies": {
|
|
"jsonwebtoken": "^9.0.0",
|
|
"reflect-metadata": "^0.1.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.1",
|
|
"@types/jsonwebtoken": "^9.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^6.5.0",
|
|
"@typescript-eslint/parser": "^6.5.0",
|
|
"eslint": "^8.39.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^29.5.0",
|
|
"prettier": "^3.0.3",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|