-
Notifications
You must be signed in to change notification settings - Fork 834
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.97 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.97 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
{
"name": "@lingo.dev/_compiler",
"version": "0.12.0",
"description": "Lingo.dev Compiler",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/lingodotdev/lingo.dev.git",
"directory": "packages/compiler"
},
"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.3.8",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.13"
},
"dependencies": {
"@ai-sdk/anthropic": "3.0.9",
"@ai-sdk/google": "3.0.6",
"@ai-sdk/groq": "3.0.4",
"@ai-sdk/mistral": "3.0.5",
"@ai-sdk/openai": "3.0.7",
"@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": "6.0.0-alpha.1",
"ai": "6.0.25",
"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-v2": "2.0.0",
"posthog-node": "5.14.0",
"unplugin": "2.3.11",
"zod": "4.1.12"
},
"packageManager": "pnpm@9.12.3"
}