-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 938 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 938 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
{
"name": "davia-monorepo",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "Interactive, editable docs designed for coding agents",
"author": "Davia Labs, Inc.",
"homepage": "https://davia.ai",
"repository": {
"type": "git",
"url": "https://github.com/davialabs/davia.git"
},
"bugs": {
"url": "https://github.com/davialabs/davia/issues"
},
"keywords": [
"davia",
"documentation",
"docs",
"internal-docs",
"ai-docs",
"interactive-docs"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.6.0",
"typescript": "5.9.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}