mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-02-09 05:19:24 -06:00
* implement packaging proof of concept with yeet Signed-off-by: Xe Iaso <me@xeiaso.net> * docs/developer: add local dev docs for yeet Signed-off-by: Xe Iaso <me@xeiaso.net> * apply review feedback Signed-off-by: Xe Iaso <me@xeiaso.net> * build package artifacts in CI Signed-off-by: Xe Iaso <me@xeiaso.net> * tell CI to fetch all git metadata Signed-off-by: Xe Iaso <me@xeiaso.net> * rename package builds job Signed-off-by: Xe Iaso <me@xeiaso.net> * upload each package individually Signed-off-by: Xe Iaso <me@xeiaso.net> * split package build CI jobs Signed-off-by: Xe Iaso <me@xeiaso.net> * fix code injection? Signed-off-by: Xe Iaso <me@xeiaso.net> * fix ci? Signed-off-by: Xe Iaso <me@xeiaso.net> * fix security alert Signed-off-by: Xe Iaso <me@xeiaso.net> * docs/local-dev: point people to yeet v1.13.3 Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net>
25 lines
816 B
JSON
25 lines
816 B
JSON
{
|
|
"name": "@techaro/anubis",
|
|
"version": "1.0.0-see-VERSION-file",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "npm run assets && go test ./...",
|
|
"test:integration": "npm run assets && go test -v ./internal/test",
|
|
"assets": "go generate ./... && ./web/build.sh && ./xess/build.sh",
|
|
"build": "npm run assets && go build -o ./var/anubis ../cmd/anubis",
|
|
"dev": "npm run assets && go run ./cmd/anubis --use-remote-address",
|
|
"container": "npm run assets && go run ./cmd/containerbuild",
|
|
"package": "yeet"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"cssnano": "^7.0.6",
|
|
"cssnano-preset-advanced": "^7.0.6",
|
|
"postcss-cli": "^11.0.1",
|
|
"postcss-import": "^16.1.0",
|
|
"postcss-import-url": "^7.2.0",
|
|
"postcss-url": "^10.1.3"
|
|
}
|
|
} |