-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.03 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
{
"name": "antiflock",
"version": "0.1.0",
"private": true,
"description": "Self-hosted counter-surveillance for the networks you control: map exposure, verify trusted routes, gate sensitive actions",
"engines": {
"node": ">=24"
},
"workspaces": [
"apps/web",
"apps/aether-demo",
"sdk/typescript"
],
"scripts": {
"dev": "node scripts/compose.mjs dev",
"down": "node scripts/compose.mjs down",
"lab": "node scripts/compose.mjs lab",
"build": "node scripts/compose.mjs build",
"dev:env": "node scripts/dev-env.mjs",
"ci:install": "node scripts/install-js.mjs",
"format": "node scripts/format.mjs",
"lint": "node scripts/verify.mjs --lint-only",
"test:tooling": "node --test scripts/dev-environment.test.mjs",
"test:sdk:live": "node scripts/sdk-live-e2e.mjs",
"test": "node scripts/test-all.mjs",
"verify": "node scripts/verify.mjs",
"acceptance": "node scripts/acceptance.mjs",
"acceptance:strict": "node scripts/acceptance.mjs --strict"
},
"license": "Apache-2.0"
}