-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1010 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1010 Bytes
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
{
"name": "@lightmill/log-api",
"version": "4.0.1",
"description": "API for Lightmill log server",
"author": "Quentin Roy <contact@quentinroy.fr>",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./openapi.yaml": "./dist/openapi.yaml"
},
"files": [
"dist",
"src"
],
"scripts": {
"build-api": "mkdir -p dist && node --experimental-strip-types scripts/build-api.ts > dist/openapi.yaml",
"build-js": "tsc -b tsconfig.build.json",
"build": "pnpm run build-api && pnpm run build-js",
"watch:build": "onchange -i 'src/*' -i 'scripts/*.ts' -- pnpm build",
"prepublish": "pnpm run build"
},
"devDependencies": {
"@std/yaml": "jsr:^1.0.8",
"onchange": "^7.1.0",
"openapi-typescript": "^7.8.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "8.0.0-beta.4",
"type-fest": "^4.41.0",
"zod": "^3.25.73"
}
}