mirror of
https://github.com/standardnotes/app
synced 2026-01-16 19:04:58 -05:00
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
Sync Repo / git-sync (push) Has been cancelled
Publish Packages / Build & Test (push) Has been cancelled
Publish Packages / Build Docker Image (push) Has been cancelled
Publish Packages / E2E Base Test Suite (push) Has been cancelled
Publish Packages / E2E Vaults Test Suite (push) Has been cancelled
Publish Packages / Build and publish Docker Image for Web App (push) Has been cancelled
Publish Packages / Publish to NPM (push) Has been cancelled
Publish Packages / Publish to Docker Hub (push) Has been cancelled
- @standardnotes/api@1.26.94 - @standardnotes/clipper@1.1.544 - @standardnotes/desktop@3.110.149 - @standardnotes/mobile@3.58.207 - @standardnotes/releases@1.4.847 - @standardnotes/services@1.71.10 - @standardnotes/snjs@2.209.13 - @standardnotes/ui-services@1.38.12 - @standardnotes/web@3.198.17
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "@standardnotes/api",
|
|
"version": "1.26.94",
|
|
"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"
|
|
}
|
|
}
|