apex-fast 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "apex-fast",
3
+ "version": "0.0.1",
4
+ "description": "Fast Apply is a tool that you give to your AI agent that allows it to edit code or files.",
5
+ "author": {
6
+ "name": "Zulu Dev",
7
+ "email": "root@aistorytell.me"
8
+ },
9
+ "type": "module",
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "bin": {
13
+ "apex-fast-mcp": "./dist/mcp-server.js"
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/index.js",
18
+ "types": "./dist/index.d.ts",
19
+ "default": "./dist/index.js"
20
+ }
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/yunaamelia/apex-fast.git"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "src/version.ts"
32
+ ],
33
+ "scripts": {
34
+ "prepare": "husky",
35
+ "test": "vitest run",
36
+ "build": "tsc",
37
+ "start:mcp": "node dist/mcp-server.js",
38
+ "lint": "eslint ."
39
+ },
40
+ "lint-staged": {
41
+ "*.ts": [
42
+ "eslint --fix",
43
+ "prettier --write"
44
+ ]
45
+ },
46
+ "devDependencies": {
47
+ "@eslint/js": "^9.39.1",
48
+ "@types/cors": "^2.8.19",
49
+ "@types/express": "^5.0.6",
50
+ "@types/node": "^20.11.5",
51
+ "@typescript-eslint/eslint-plugin": "8.47.0",
52
+ "@typescript-eslint/parser": "8.47.0",
53
+ "bun-types": "latest",
54
+ "eslint": "^9.39.1",
55
+ "eslint-config-prettier": "10.1.8",
56
+ "eslint-plugin-prettier": "^5.1.3",
57
+ "husky": "^9.1.7",
58
+ "lint-staged": "^16.2.7",
59
+ "prettier": "^3.2.4",
60
+ "typescript-eslint": "^8.47.0",
61
+ "vitest": "^3.2.4"
62
+ },
63
+ "dependencies": {
64
+ "@modelcontextprotocol/sdk": "^1.26.0",
65
+ "@morphllm/morphsdk": "^0.2.115",
66
+ "@opencode-ai/plugin": "^1.2.10",
67
+ "cors": "^2.8.6",
68
+ "dotenv": "^17.3.1",
69
+ "express": "^5.2.1"
70
+ }
71
+ }