-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.37 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
{
"name": "trickfire-docs",
"version": "1.6.2",
"description": "Documentation framework for TrickFire Robotics",
"license": "Apache-2.0",
"author": "TrickFire Robotics",
"type": "module",
"bin": {
"trickfire-docs": "./dist-cli/cli.js"
},
"main": "./dist-cli/index.js",
"types": "./dist-cli/index.d.ts",
"files": [
"dist-cli",
"scaffold",
"src/css",
"public"
],
"scripts": {
"website:dev": "docusaurus start",
"website:build": "docusaurus build",
"website:serve": "docusaurus serve",
"website:clear": "docusaurus clear",
"framework:dev": "tsx framework/cli.ts",
"framework:build": "tsup",
"framework:test": "./scripts/test-cli.sh",
"test": "vitest run",
"release:dry-run": "semantic-release --dry-run --no-ci",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.cli.json",
"check": "pnpm lint && pnpm format:check && pnpm typecheck",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css}": "prettier --write"
},
"dependencies": {
"@docusaurus/core": "^3.8.0",
"@docusaurus/faster": "^3.10.2",
"@docusaurus/preset-classic": "^3.8.0",
"@mdx-js/react": "^3.1.1",
"prism-react-renderer": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@docusaurus/plugin-content-docs": "^3.8.0",
"@docusaurus/types": "^3.8.0",
"@eslint/js": "^9.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^26.0.1",
"@types/react": "^18.3.18",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4",
"semantic-release": "^25.0.5",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.9"
}
}