-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.58 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
{
"name": "frontsmith",
"version": "1.0.0",
"description": "Codex-native front-office kit for local service businesses.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/neurarelay/frontsmith.git"
},
"homepage": "https://frontsmith.neurapath.ai/",
"bugs": {
"url": "https://github.com/neurarelay/frontsmith/issues"
},
"keywords": [
"codex",
"front-office",
"local-business",
"website",
"customer-desk",
"owner-approval"
],
"scripts": {
"check": "node scripts/check.mjs",
"bootstrap": "node scripts/bootstrap.mjs",
"update:website": "node scripts/update-website.mjs",
"owner:brief": "node scripts/prepare-owner-brief.mjs",
"prepare:reply": "node scripts/prepare-customer-reply.mjs",
"prepare:estimate": "node scripts/prepare-estimate-draft.mjs",
"prepare:extension": "node scripts/prepare-extension-plan.mjs",
"prepare:connected-action": "node scripts/prepare-connected-action-receipt.mjs",
"first-run:status": "node scripts/first-run-readiness.mjs",
"launch:status": "node scripts/launch-status.mjs",
"build:demo": "node scripts/build-demo.mjs",
"deploy:check": "node scripts/build-demo.mjs --quiet && node scripts/deploy-check.mjs",
"preview:demo": "node scripts/preview-demo.mjs",
"preview:website": "node scripts/preview-website.mjs",
"test": "npm run test:launch && npm run test:regression",
"test:launch": "node tests/launch-readiness.mjs",
"test:regression": "node tests/regression.mjs"
},
"engines": {
"node": ">=20"
}
}