-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.5 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
81
82
{
"name": "@ait-co/docs",
"version": "0.0.0",
"description": "Community-maintained, cleaner and friendlier guides and references for Apps in Toss mini-app development",
"private": true,
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "docusaurus start",
"start": "docusaurus start",
"build:og": "tsx --tsconfig tsconfig.json scripts/build-og-images.tsx",
"check:og-images": "tsx scripts/check-og-images.ts",
"build:llms": "tsx --tsconfig tsconfig.json scripts/build-llms-txt.ts",
"check:llms": "pnpm build:llms && git diff --exit-code -- static/llms.txt",
"prebuild": "pnpm build:og && pnpm build:llms",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"serve": "docusaurus serve",
"clear": "docusaurus clear",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"verify:crosslinks": "tsx scripts/verify-crosslinks.ts",
"coverage:check": "tsx scripts/sdk-coverage.ts --no-fail-on-drift",
"coverage:baseline": "tsx scripts/sdk-coverage.ts --update-baseline --no-fail-on-drift"
},
"dependencies": {
"@docusaurus/core": "3.10.1",
"@docusaurus/plugin-content-docs": "3.10.1",
"@docusaurus/preset-classic": "3.10.1",
"@mdx-js/react": "3.1.1",
"clsx": "2.1.1",
"prism-react-renderer": "2.4.1",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@apps-in-toss/web-framework": "2.10.0",
"@biomejs/biome": "2.4.15",
"@docusaurus/module-type-aliases": "3.10.1",
"@docusaurus/tsconfig": "3.10.1",
"@docusaurus/types": "3.10.1",
"@easyops-cn/docusaurus-search-local": "0.55.1",
"@types/node": "25.6.2",
"@types/react": "19.2.14",
"satori": "^0.26.0",
"sharp": "^0.34.5",
"tsx": "4.21.0",
"typescript": "6.0.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"keywords": [
"apps-in-toss",
"toss",
"mini-app",
"docs"
],
"packageManager": "[email protected]",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/apps-in-toss-community/docs"
},
"bugs": {
"url": "https://github.com/apps-in-toss-community/docs/issues"
}
}