standardnotes-server/packages/common/package.json
2023-05-05 11:17:26 +02:00

40 lines
987 B
JSON

{
"name": "@standardnotes/common",
"version": "1.46.6",
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"description": "Common types and utilities 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"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build",
"lint": "eslint . --ext .ts",
"test": "jest spec --coverage"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}