Files
standardnotes-app/packages/sncrypto-common/package.json
2023-10-17 09:22:08 -05:00

37 lines
813 B
JSON

{
"name": "@standardnotes/sncrypto-common",
"version": "1.13.7",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"description": "SNCrypto common",
"main": "dist/index.js",
"author": "Standard Notes",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "AGPL-3.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch",
"lint": "eslint src --ext .ts",
"test": "yarn lint"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-plugin-prettier": "*",
"typescript": "*"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}