codexslimedit 0.1.0

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,46 @@
1
+ {
2
+ "name": "codexslimedit",
3
+ "version": "0.1.0",
4
+ "description": "Concise, workspace-safe MCP file reading and editing.",
5
+ "license": "SUL-1.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/davidbasilefilho/holycodex.git",
9
+ "directory": "packages/codexslimedit"
10
+ },
11
+ "bin": {
12
+ "codexslimedit": "dist/cli.js"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "LICENSE.md",
17
+ "LICENSE-OPENSLIMEDIT-MIT.txt",
18
+ "THIRD-PARTY-NOTICES.md",
19
+ "README.md"
20
+ ],
21
+ "type": "module",
22
+ "main": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "import": "./dist/index.js"
28
+ }
29
+ },
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "scripts": {
34
+ "build": "vp build --config vite.config.ts",
35
+ "prepack": "vp build --config vite.config.ts && node scripts/copy-types.mjs",
36
+ "typecheck": "tsgo --noEmit -p tsconfig.json",
37
+ "test": "bun test src/*.test.ts"
38
+ },
39
+ "devDependencies": {
40
+ "bun-types": "1.3.12",
41
+ "zod": "^4.4.3"
42
+ },
43
+ "engines": {
44
+ "node": ">=20"
45
+ }
46
+ }