-
-
Notifications
You must be signed in to change notification settings - Fork 733
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@techaro/anubis",
"version": "1.28.0-pre2",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run assets && SKIP_INTEGRATION=1 go test ./...",
"test:spelling": "git diff --name-only HEAD | npx cspell --file-list stdin",
"test:spelling:all:": "cspell .",
"test:spelling:sort": "node .vscode/scripts/sort-project-words.mjs",
"test:integration": "npm run assets && go test -v ./internal/test",
"test:integration:podman": "npm run assets && go test -v ./internal/test --playwright-runner=podman",
"test:integration:docker": "npm run assets && go test -v ./internal/test --playwright-runner=docker",
"assets:generate": "go generate ./...",
"assets:wasm": "bash ./wasm/scripts/build_wasm.sh",
"assets:wasm2js": "bash ./wasm/scripts/build_wasm2js.sh",
"assets:web": "./web/build.sh",
"assets:xess": "./xess/build.sh",
"assets": "npm run assets:generate && npm run assets:wasm && npm run assets:wasm2js && npm run assets:web && npm run assets:xess && echo Done",
"build": "npm run assets && go build -o ./var/anubis ./cmd/anubis",
"dev": "npm run assets && go run ./cmd/anubis --use-remote-address --target http://localhost:3000",
"container": "npm run assets && go run ./cmd/containerbuild",
"package": "go tool yeet",
"lint": "make lint",
"spellcheck": "cspell --no-progress --config .vscode/cspell.json \"**\"",
"prepare": "husky && go mod download && cargo fetch",
"format": "prettier -w . 2>&1 >/dev/null && go tool goimports -w ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.0.2",
"baseline-browser-mapping": "^2.11.20",
"cspell": "^10.1.1",
"cssnano": "^9.0.1",
"cssnano-preset-advanced": "^9.0.1",
"esbuild": "^0.28.2",
"husky": "^9.1.7",
"playwright": "^1.61.1",
"postcss-cli": "^11.0.1",
"postcss-import": "^17.0.0",
"postcss-import-url": "^7.2.0",
"postcss-url": "^10.1.4",
"prettier": "^3.9.6"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"preact": "^10.29.8",
"wasm-feature-detect": "^1.9.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
99999
],
"footer-max-line-length": [
2,
"always",
99999
],
"signed-off-by": [
2,
"always"
]
}
},
"prettier": {
"singleQuote": false,
"tabWidth": 2,
"semi": true,
"trailingComma": "all",
"printWidth": 80
}
}