mirror of
https://github.com/standardnotes/app
synced 2026-09-27 06:14:06 -04:00
* chore: add extract scripts and fix dependencies * chore: localization batch 2 * chore: localization batch 3 * chore: localization batch 4 * chore: localization batch 5 * chore: fix strings allocated to incorrect batches * chore: localization batch 6 * chore: localization batch 7 * chore: add ttag packages * chore: localization batch 8 * chore: missed strings from all batches * chore: rename batches 7 and 8 * chore: fix issue in batch 3 string * chore: rename batch 2 * chore: fix strings allocated to incorrect batches * chore: fix linting issues * chore: merge batches 4 and 5 * chore: split batch 3 * chore: reassign help panel strings * chore: add missing strings * chore: fix keyboard shortcuts regression and passcode bug * chore: fix yarn lock file * chore: fix ts errors * chore: fix ts errors * chore: fix lint issue * chore: fix lint issues
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@standardnotes/api",
|
|
"version": "1.26.98",
|
|
"engines": {
|
|
"node": ">=16.0.0 <17.0.0"
|
|
},
|
|
"description": "Interfaces for dealing with SN server-side API",
|
|
"main": "dist/index.js",
|
|
"author": "Standard Notes",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "AGPL-3.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",
|
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
"test": "jest spec --coverage --passWithNoTests"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.2.3",
|
|
"@typescript-eslint/eslint-plugin": "*",
|
|
"eslint": "*",
|
|
"eslint-plugin-prettier": "*",
|
|
"jest": "^29.3.1",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "*"
|
|
},
|
|
"dependencies": {
|
|
"@standardnotes/common": "^1.50.0",
|
|
"@standardnotes/domain-core": "^1.40.0",
|
|
"@standardnotes/models": "workspace:*",
|
|
"@standardnotes/responses": "workspace:*",
|
|
"@standardnotes/utils": "workspace:*",
|
|
"reflect-metadata": "^0.1.13",
|
|
"ttag": "^1.8.12"
|
|
}
|
|
}
|