forked from team-plain/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 717 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 717 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
{
"name": "@team-plain/docs",
"version": "1.0.0",
"description": "Documentation for plain.com",
"main": ".",
"engines": {
"node": "18.x",
"pnpm": "8.x"
},
"scripts": {
"dev": "mintlify dev",
"lint": "pnpm run lint:biome && pnpm run lint:links",
"lint:snippets": "tsx scripts/validateWebhookSnippets.ts",
"lint:links": "mintlify broken-links",
"lint:biome": "biome check",
"lint:fix": "biome check --write",
"format": "prettier --write './**/*.{js,ts,tsx,md,mdx}'"
},
"dependencies": {
"ajv-formats": "^3.0.1",
"mintlify": "^4.0.82"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/ajv": "^1.0.0",
"@types/node": "^22.5.5",
"ajv": "^8.17.1",
"tsx": "^4.19.1"
}
}