-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "tiny-node-api",
"version": "0.1.0",
"description": "A lightweight, configurable static API server that turns files (JSON, YAML) into HTTP endpoints. It can merge multiple files, run custom filter functions and supports OAuth2/JWT.",
"keywords": [
"server",
"api",
"node",
"yaml",
"yaml-parser",
"yaml2json",
"json",
"json-parser",
"json2yaml",
"merge",
"config-files",
"parser"
],
"author": "Boris Pulyer",
"license": "GNU",
"private": true,
"type": "module",
"main": "dist/main.js",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch --clear-screen=false src/main.ts",
"clean": "rm -rf dist",
"build": "tsup --config tsup.config.ts",
"build:prod": "cross-env NODE_ENV=production tsup --config tsup.config.ts",
"start": "node --enable-source-maps dist/main.js",
"start:prod": "cross-env NODE_ENV=production node --enable-source-maps dist/main.js",
"typecheck": "tsc --noEmit -p tsconfig.json",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"dependencies": {
"dotenv": "^17.2.1",
"jose": "^6.0.12",
"pino": "^9.9.0",
"pino-http": "^10.5.0",
"pino-pretty": "^13.1.1",
"pino-roll": "^3.1.0",
"yaml": "^2.3.3"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.1",
"@types/node": "^24.1.0",
"cross-env": "^7.0.3",
"prettier": "^3.6.2",
"tsup": "^8.2.4",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}