standardnotes-app/packages/utils/package.json

47 lines
1.1 KiB
JSON

{
"name": "@standardnotes/utils",
"version": "1.17.8",
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"description": "Common utilities for Standard Notes projects",
"main": "dist/index.js",
"author": "Standard Notes",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "CC BY-NC-SA 4.0",
"scripts": {
"clean": "rm -fr dist",
"prestart": "yarn clean",
"start": "tsc -p tsconfig.json --watch",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"dependencies": {
"@standardnotes/common": "^1.50.0",
"dompurify": "^2.4.1",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/dompurify": "^2.4.0",
"@types/jest": "^29.2.3",
"@types/jsdom": "^20.0.1",
"@types/lodash": "^4.14.189",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint": "*",
"eslint-plugin-prettier": "*",
"jest": "^29.3.1",
"jsdom": "^20.0.2",
"ts-jest": "^29.0.3",
"typescript": "*"
}
}