-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.14 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.14 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
83
84
85
86
87
88
89
90
91
{
"name": "codemie-docs",
"version": "1.0.0",
"description": "AI/Run CodeMie Platform Documentation",
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:markdown && npm run lint:spelling",
"lint:eslint": "eslint . --max-warnings 0",
"lint:prettier": "prettier --check .",
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#build\"",
"lint:spelling": "cspell \"**\" --no-progress",
"format": "npm run format:eslint && npm run format:prettier",
"format:eslint": "eslint . --fix",
"format:prettier": "prettier --write .",
"typecheck": "tsc --noEmit",
"secrets:check": "sh scripts/secrets-check.sh",
"secrets:check-git": "sh scripts/secrets-check.sh --git",
"commitlint": "commitlint --edit",
"commitlint:last": "commitlint --from HEAD~1 --to HEAD --verbose",
"commitlint:test": "commitlint --verbose",
"check": "npm run typecheck && npm run lint && npm run commitlint:last",
"check:pre-commit": "npm run typecheck && npm run lint",
"validate": "npm run typecheck && npm run lint && npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codemie-ai/docs.git"
},
"keywords": [
"documentation",
"AI",
"CodeMie",
"developer-tools"
],
"author": "AI/Run CodeMie Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/codemie-ai/docs/issues"
},
"homepage": "https://github.com/codemie-ai/docs#readme",
"engines": {
"node": ">=18.0"
},
"dependencies": {
"@docusaurus/core": "^3.9.2",
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/theme-mermaid": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"@easyops-cn/docusaurus-search-local": "^0.52.1",
"clsx": "^2.1.1",
"docusaurus-plugin-image-zoom": "^3.0.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"toastify-js": "^1.12.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@docusaurus/plugin-client-redirects": "^3.9.2",
"@eslint/js": "^9.39.1",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"autoprefixer": "^10.4.23",
"baseline-browser-mapping": "^2.9.11",
"cspell": "^9.3.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"markdownlint-cli2": "^0.18.1",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.19",
"tailwindcss-themer": "^4.1.1",
"typescript-eslint": "^8.46.3"
}
}