-
Notifications
You must be signed in to change notification settings - Fork 838
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.83 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.83 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
{
"name": "@lingo.dev/_compiler",
"version": "0.8.5",
"description": "Lingo.dev Compiler",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false,
"type": "module",
"main": "build/index.cjs",
"types": "build/index.d.ts",
"module": "build/index.mjs",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.mjs",
"require": "./build/index.cjs"
}
},
"files": [
"build"
],
"scripts": {
"dev": "tsup --watch",
"build": "pnpm typecheck && tsup",
"typecheck": "tsc --noEmit",
"clean": "rm -rf build",
"test": "vitest --run",
"test:watch": "vitest -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/babel__generator": "7.27.0",
"@types/babel__traverse": "7.28.0",
"@types/ini": "4.1.1",
"@types/lodash": "4.17.21",
"@types/object-hash": "3.0.6",
"@types/react": "19.2.7",
"next": "15.2.6",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.13"
},
"dependencies": {
"@ai-sdk/anthropic": "1.2.11",
"@ai-sdk/google": "1.2.19",
"@ai-sdk/groq": "1.2.3",
"@ai-sdk/mistral": "1.2.8",
"@ai-sdk/openai": "1.3.22",
"@babel/generator": "7.28.5",
"@babel/parser": "7.28.5",
"@babel/traverse": "7.28.5",
"@babel/types": "7.28.5",
"@lingo.dev/_sdk": "workspace:*",
"@lingo.dev/_spec": "workspace:*",
"@openrouter/ai-sdk-provider": "0.7.1",
"ai": "4.2.10",
"dedent": "1.7.0",
"dotenv": "16.4.5",
"fast-xml-parser": "5.3.2",
"ini": "5.0.0",
"lodash": "4.17.21",
"node-machine-id": "1.1.12",
"object-hash": "3.0.0",
"ollama-ai-provider": "1.2.0",
"posthog-node": "5.14.0",
"unplugin": "2.3.11",
"zod": "3.25.76"
},
"packageManager": "pnpm@9.12.3"
}