-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 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
{
"dependencies": {
"@octokit/graphql": "^9.0.1",
"@types/micromatch": "^4.0.9",
"lucide-static": "0.545.0",
"micromatch": "^4.0.8"
},
"description": "Compozy runtime examples and tools",
"devDependencies": {
"@commitlint/config-conventional": "20.0.0",
"@octokit/rest": "^22.0.0",
"@storybook/nextjs": "9.1.0",
"@types/bun": "1.2.19",
"@types/minimatch": "5.1.2",
"minimatch": "^10.0.3",
"oxlint": "1.9.0",
"prettier": "3.6.2",
"prettier-plugin-multiline-arrays": "4.0.3",
"prettier-plugin-organize-imports": "4.2.0",
"prettier-plugin-sh": "0.18.0",
"tsx": "^4.7.0",
"turbo": "^2.5.8",
"typescript": "5.9.2",
"updates": "^16.5.2",
"vite": "7.0.6"
},
"name": "compozy",
"overrides": {
"@shikijs/core": "3.9.1",
"@shikijs/engine-javascript": "3.9.1",
"@shikijs/engine-oniguruma": "3.9.1",
"@shikijs/langs": "3.9.1",
"@shikijs/rehype": "3.9.1",
"@shikijs/themes": "3.9.1",
"@shikijs/types": "3.9.1",
"shiki": "3.9.1"
},
"packageManager": "bun@1.3.0",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"clean:deps": "rm -rf node_modules bun.lockb",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,js,tsx,json,md}\"",
"format:yaml": "prettier --write \"**/*.{yml,yaml}\"",
"lint": "turbo run lint",
"pr:review": "bun scripts/pr-review.ts",
"reinstall": "bun run clean:deps && bun install",
"storybook": "turbo run storybook",
"test": "turbo run test",
"type-check": "turbo run type-check",
"update:deps": "turbo run update:deps"
},
"type": "module",
"version": "0.0.19",
"workspaces": [
"examples/**",
"docs"
]
}