-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.84 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.84 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
81
82
83
84
85
86
{
"name": "faf-cli",
"version": "6.4.0",
"description": "Persistent AI Context Standard — project DNA for AI. IANA-registered. Anthropic-approved.",
"type": "module",
"icon": "https://faf.one/orange-smiley.svg",
"logo": "https://faf.one/orange-smiley.svg",
"main": "dist/index.js",
"bin": {
"faf": "dist/cli.js",
"faf-cli": "dist/cli.js"
},
"exports": {
".": {
"bun": "./src/index.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"project.faf"
],
"scripts": {
"dev": "bun src/cli.ts",
"build": "bun build src/cli.ts --outdir dist --target=node --minify --sourcemap=linked --external faf-scoring-kernel --external open && bun build src/index.ts --outdir dist --target=node --minify --sourcemap=linked --external faf-scoring-kernel --external open",
"compile": "bun build src/cli.ts --compile --bytecode --minify --outfile faf",
"compile:all": "bun build src/cli.ts --compile --bytecode --minify --target=bun-darwin-arm64 --outfile faf-darwin-arm64 && bun build src/cli.ts --compile --bytecode --minify --target=bun-darwin-x64 --outfile faf-darwin-x64 && bun build src/cli.ts --compile --bytecode --minify --target=bun-linux-x64 --outfile faf-linux-x64 && bun build src/cli.ts --compile --bytecode --minify --target=bun-windows-x64 --outfile faf-windows-x64.exe",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint src/**/*.ts",
"format": "prettier --write 'src/**/*.ts'",
"check:no-hardcode": "! grep -rEln '/(Users|home/runner|private/var)/' dist/ || (echo '❌ Hardcoded build-machine path leaked into dist — see grep output above. Externalize the offending dep in the build script.'; exit 1)",
"prepublishOnly": "bun run build && bun run check:no-hardcode"
},
"keywords": [
"faf",
"ai-context",
"project-dna",
"bi-sync",
"cli",
"claude",
"gemini",
"cursor",
"mcp",
"model-context-protocol",
"persistent-context",
"ai-readiness",
"foundational"
],
"author": "wolfejam <wolfejam@faf.one>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Wolfe-Jam/faf-cli.git"
},
"homepage": "https://faf.one",
"bugs": {
"url": "https://github.com/Wolfe-Jam/faf-cli/issues"
},
"dependencies": {
"commander": "^14.0.1",
"faf-scoring-kernel": "^2.0.3",
"open": "^11.0.0",
"yaml": "^2.4.1"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.91.1"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.39.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"typescript-eslint": "^8.59.1"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}