-
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.79 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.79 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "codeimage",
"version": "1.10.0",
"description": "Create elegant code screenshots of your source code",
"info": "Codeimage is the newest open source tool to help developers to create beautiful screenshots of their code, providing several features to speed up the process to post in social media. It's built on the top of solid-js and has a rich choice of customizations, 15+ custom themes, supports for mobile devices and much more!",
"homepage": "https://codeimage.dev/",
"private": true,
"sideEffects": true,
"repository": {
"type": "git",
"url": "https://github.com/riccardoperra/codeimage"
},
"bugs": "https://github.com/riccardoperra/codeimage/issues",
"license": "MIT",
"keywords": [
"solidhack",
"solidjs",
"best_app",
"code",
"editor",
"elegant",
"snippets",
"screenshot"
],
"contributors": [
{
"name": "Riccardo Perra",
"email": "riccardo.perra@icloud.com",
"url": "https://riccardoperra.com"
}
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"prepare": "husky install",
"dev": "pnpm --filter=@codeimage/app dev",
"dev:api": "pnpm --filter=@codeimage/api dev",
"libs:build": "pnpm libs:build:core && pnpm libs:build:config",
"libs:build:core": "pnpm --filter \"@codeimage/*{packages/**}\" --filter='!@codeimage/config' --parallel build",
"libs:build:config": "pnpm --filter=@codeimage/config build",
"libs:build:watch": "pnpm --filter \"{packages/**}\" --filter='!@codeimage/config' --parallel --aggregate-output build:watch",
"kit:build": "pnpm --prefix=packages/kit build:kit",
"lint": "pnpm --filter='@codeimage/*' --parallel -r lint",
"format": "oxfmt",
"format:check": "oxfmt --check",
"typecheck": "pnpm --filter='@codeimage/*' --recursive --parallel typecheck",
"build:prod": "pnpm libs:build && pnpm --filter=@codeimage/app build",
"changeset:pr": "changeset version && tsx scripts/sync-package.ts",
"pre-commit": "lint-staged --relative",
"pre-commit-format": "oxfmt",
"pre-commit-eslint": "oxlint --fix",
"prepare:env": "tsx ./scripts/make-env.ts",
"prepare:env:codesandbox": "RUN_ON_CODESANDBOX=true tsx ./scripts/make-env",
"prepare:api:deploy": "pnpm-bundle-workspace-package @codeimage/api --outDir=dist/api-bundle && rm -rf dist/api-bundle/workspace-dependencies/prisma-models/.gitignore"
},
"packageManager": "pnpm@10.32.1",
"devDependencies": {
"@changesets/assemble-release-plan": "^6.0.9",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@changesets/config": "^3.1.3",
"@changesets/pre": "^2.0.2",
"@changesets/read": "^0.6.7",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-angular": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "catalog:next",
"@types/prettier": "^3.0.0",
"chalk": "5.6.2",
"enquirer": "2.4.1",
"eslint-plugin-solid": "0.14.5",
"husky": "9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "catalog:next",
"oxlint": "catalog:next",
"pnpm-bundle-workspace-package": "^1.0.2",
"tslib": "^2.8.1",
"tsx": "catalog:next",
"typescript": "catalog:next",
"vite": "catalog:next"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"pnpm": {
"overrides": {
"typescript": "catalog:next"
},
"patchedDependencies": {
"solid-headless": "patches/solid-headless.patch",
"@codeui/kit": "patches/@codeui__kit.patch",
"tinykeys": "patches/tinykeys.patch",
"@thisbeyond/solid-dnd": "patches/@thisbeyond__solid-dnd.patch",
"@motionone/solid": "patches/@motionone__solid.patch"
},
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
},
"dependencies": {
"statebuilder": "^0.8.1"
}
}