-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.36 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.36 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
{
"name": "faf-cli",
"version": "6.0.8",
"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 --outfile dist/cli.js --target=node --minify && bun build src/index.ts --outfile dist/index.js --target=node --minify",
"compile": "bun build src/cli.ts --compile --bytecode --minify --outfile faf",
"compile:all": "bun build src/cli.ts --compile --target=bun-darwin-arm64 --outfile faf-darwin-arm64 && bun build src/cli.ts --compile --target=bun-darwin-x64 --outfile faf-darwin-x64 && bun build src/cli.ts --compile --target=bun-linux-x64 --outfile faf-linux-x64 && bun build src/cli.ts --compile --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'",
"prepublishOnly": "bun run build"
},
"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": "8.4.2",
"yaml": "^2.4.1"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.74.0"
},
"devDependencies": {
"@types/node": "^22.15.0",
"typescript": "^5.3.3",
"eslint": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}