-
Notifications
You must be signed in to change notification settings - Fork 837
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 990 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 990 Bytes
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
{
"name": "@lingo.dev/_sdk",
"version": "0.16.0",
"description": "Lingo.dev JS SDK",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/lingodotdev/lingo.dev.git",
"directory": "packages/sdk"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"sideEffects": false,
"types": "build/index.d.ts",
"module": "build/index.mjs",
"main": "build/index.cjs",
"files": [
"build"
],
"scripts": {
"dev": "tsup --watch",
"build": "pnpm typecheck && tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@lingo.dev/_spec": "workspace:*",
"@paralleldrive/cuid2": "2.2.2",
"jsdom": "25.0.1",
"posthog-node": "5.14.0",
"zod": "4.1.12"
},
"devDependencies": {
"@types/jsdom": "21.1.7",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "3.1.2"
}
}