-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
{
"name": "jules-sdk-monorepo",
"private": true,
"type": "module",
"version": "0.0.6",
"packageManager": "npm@10.8.2",
"engines": {
"node": ">=18"
},
"workspaces": [
"packages/*",
"examples/*"
],
"description": "Official Jules TypeScript SDK",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:smoke": "bun scripts/smoke-test.ts",
"typecheck": "turbo run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"precommit": "npm run format && npm run typecheck && npm test"
},
"author": "Google LLC",
"license": "Apache-2.0",
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2
},
"devDependencies": {
"@types/node": "^22.15.0",
"fake-indexeddb": "^6.2.5",
"find-up": "^8.0.0",
"glob": "^13.0.0",
"msw": "^2.10.4",
"niftty": "^0.1.3",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"turbo": "^2.0.6",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4",
"yaml": "^2.8.2",
"zod-to-json-schema": "^3.24.0"
},
"dependencies": {
"@types/bun": "^1.3.9"
}
}