-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@njfamirm/decap-cms-github-backend",
"version": "1.2.5",
"private": true,
"description": "Self-hosted decap cms github backend.",
"license": "MIT",
"author": "S. Amir Mohammad Najafi <njfamirm@gamil.com> (https://www.njfamirm.ir)",
"type": "module",
"scripts": {
"start": "NODE_OPTIONS=--enable-source-maps run-s clean build serve",
"build": "tsc && esbuild src/index.ts --platform=node --external:simple-oauth2 --target=node22 --bundle --format=esm --minify --sourcemap --outdir=dist --out-extension:.js=.mjs",
"clean": "rm -rf dist build .tsbuildinfo",
"serve": "node --enable-source-maps dist/index.mjs",
"watch": "run-s clean build && run-p watch:es watch:node",
"watch:node": "nodemon -w dist/ --enable-source-maps dist/index.mjs",
"watch:es": "yarn build:es --watch",
"release": "standard-version --sign",
"format": "prettier . --ignore-path .prettierignore --write"
},
"dependencies": {
"@alwatr/logger": "^5.5.3",
"@alwatr/nanotron": "^4.9.3",
"simple-oauth2": "~5.1.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@nexim/prettier-config": "^1.3.0",
"@types/node": "^24.10.1",
"@types/simple-oauth2": "^5.0.7",
"esbuild": "^0.27.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.3",
"standard-version": "^9.5.0",
"typescript": "^5.9.3"
},
"packageManager": "yarn@1.22.22+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}