-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 KB
/
package.json
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
{
"name": "shoebill-watcher",
"version": "2024.11.28",
"description": "A watcher for FHIR IG auto-builds",
"private": true,
"homepage": "https://github.com/qligier/shoebill-watcher",
"bugs": {
"url": "https://github.com/qligier/shoebill-watcher/issues"
},
"scripts": {
"build": "node ./build.js",
"build-js": "tsc -noEmit && esbuild src/ts/app.ts --bundle --minify --tree-shaking=true --target=es2022 --outfile=dist/app.js",
"build-css": "sass --no-source-map --style=compressed --color src/scss/index.scss dist/style.css",
"build-static": "cp -R ./static/* ./dist",
"build-static:windows": "xcopy /E /Y /I static dist",
"optimize-svg": "svgo --config=svgo.config.js --input static/images/favicon.svg --input static/images/flags.svg --input static/images/icons.svg --input static/images/logo.svg --output dist/images/"
},
"author": {
"name": "Quentin Ligier",
"url": "https://www.qligier.ch/"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.16.0",
"esbuild": "0.24.0",
"eslint": "^9.16.0",
"globals": "^15.12.0",
"sass-embedded": "^1.81.0",
"svgo": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"type": "module",
"exports": "./dist/app.js",
"imports": {
"#package.json": "./package.json"
},
"dependencies": {
"yaml": "^2.6.1"
}
}