extrait 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,42 @@
1
+ {
2
+ "name": "extrait",
3
+ "version": "0.1.0",
4
+ "license": "MIT",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs",
13
+ "default": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "type": "module",
22
+ "scripts": {
23
+ "dev": "bun run examples/runner.ts",
24
+ "build": "bun run build:esm && bun run build:cjs",
25
+ "build:esm": "bun build ./src/index.ts --outfile ./dist/index.js --target node --format esm --packages external",
26
+ "build:cjs": "bun build ./src/index.ts --outfile ./dist/index.cjs --target node --format cjs --packages external",
27
+ "build:types": "bunx tsc -p tsconfig.build.json",
28
+ "lint": "bunx tsc -p tsconfig.lint.json",
29
+ "prepublishOnly": "bun run lint && bun run build && bun run build:types",
30
+ "test": "bun test",
31
+ "typecheck": "bunx tsc --noEmit"
32
+ },
33
+ "dependencies": {
34
+ "@modelcontextprotocol/sdk": "^1.26.0",
35
+ "jsonrepair": "^3.13.1",
36
+ "zod": "^3.24.2"
37
+ },
38
+ "devDependencies": {
39
+ "@types/bun": "latest",
40
+ "typescript": "^5"
41
+ }
42
+ }