-
Notifications
You must be signed in to change notification settings - Fork 193
/
package.json
97 lines (97 loc) · 3 KB
/
package.json
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "inkchain-docs",
"volta": {
"node": "20.11.0",
"pnpm": "9.2.0"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "pnpm run lint:js && pnpm run lint:mdx && pnpm run format:js:check && pnpm run spellcheck:lint",
"lint:fix": "pnpm run lint:js:fix && pnpm run lint:mdx:fix && pnpm run format:js && pnpm run spellcheck:fix",
"lint:js": "eslint ./src theme.config.tsx --ext js,jsx,ts,tsx",
"lint:js:fix": "eslint ./src theme.config.tsx --fix --ext js,jsx,ts,tsx",
"format:js": "prettier --write \"**/*.{ts,tsx,css,scss}\"",
"format:js:check": "prettier --check \"**/*.{ts,tsx,css,scss}\"",
"lint:mdx": "remark . --quiet --frail",
"lint:mdx:fix": "remark . -o --quiet",
"spellcheck:lint": "cspell lint \"**/*.mdx\"",
"spellcheck:fix": "cspell --words-only --unique \"**/*.mdx\" | sort --ignore-case | uniq"
},
"remarkConfig": {
"settings": {
"emphasis": "*",
"strong": "*"
},
"plugins": [
"remark-frontmatter",
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
"remark-gfm",
[
"remark-mdx",
{
"commonmark": true,
"extensions": [
".mdx"
],
"jsx": true
}
],
"remark-lint-frontmatter-schema",
"remark-lint-heading-style",
"remark-lint-list-item-indent",
"remark-lint-table-cell-padding",
"remark-lint-table-pipe-alignment",
"remark-lint-table-pipes",
"remark-lint-unordered-list-marker-style"
]
},
"dependencies": {
"@cookbookdev/docsbot": "^4.24.8",
"clsx": "2.1.1",
"next": "15.1.3",
"next-sitemap": "4.2.3",
"next-themes": "0.4.4",
"nextra": "2.13.4",
"nextra-theme-docs": "2.13.4",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@types/node": "22.10.5",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.20",
"cspell": "8.17.1",
"eslint": "8.57.1",
"eslint-config-next": "15.1.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-simple-import-sort": "12.1.1",
"mdx": "0.3.1",
"postcss": "8.4.49",
"prettier": "3.4.2",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-code-import": "1.2.0",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.0",
"remark-lint-frontmatter-schema": "3.15.4",
"remark-lint-heading-style": "4.0.0",
"remark-lint-list-item-indent": "4.0.0",
"remark-lint-table-cell-padding": "5.0.0",
"remark-lint-table-pipe-alignment": "4.0.0",
"remark-lint-table-pipes": "5.0.0",
"remark-lint-unordered-list-marker-style": "4.0.0",
"remark-mdx": "2.3.0",
"remark-preset-lint-consistent": "6.0.0",
"remark-preset-lint-recommended": "7.0.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.2"
}
}