-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
105 lines (105 loc) · 3.87 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
98
99
100
101
102
103
104
105
{
"name": "codeimage",
"version": "1.8.4",
"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": "[email protected]",
"url": "https://riccardoperra.com"
}
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"prepare": "husky install",
"postinstall": "pnpm patch-solid-exports",
"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",
"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",
"patch-solid-exports": "cross-env APPLY_PATCH=true tsx scripts/patch-solid-exports.ts",
"unpatch-solid-exports": "cross-env APPLY_PATCH=false tsx scripts/patch-solid-exports.ts",
"pre-commit-prettier": "prettier --write",
"pre-commit-eslint": "eslint --ext .js,.jsx,.mjs,.ts,.tsx -c .eslintrc.js --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",
"railway:up": "railway up"
},
"devDependencies": {
"@changesets/assemble-release-plan": "^5.2.3",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@changesets/config": "^2.3.0",
"@changesets/pre": "^1.0.14",
"@changesets/read": "^0.5.9",
"@commitlint/cli": "17.1.2",
"@commitlint/config-angular": "17.1.0",
"@commitlint/config-conventional": "^17.4.4",
"@railway/cli": "^3.3.1",
"@types/node": "^18.16.17",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"chalk": "5.1.2",
"cross-env": "^7.0.3",
"enquirer": "2.3.6",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-solid": "^0.7.4",
"husky": "8.0.1",
"lint-staged": "^13.2.1",
"pnpm-bundle-workspace-package": "^1.0.2",
"prettier": "^2.8.7",
"tslib": "^2.6.2",
"tsx": "^3.12.7",
"typescript": "~5.3.2",
"vite": "^3.2.5"
},
"engines": {
"pnpm": ">=7"
},
"pnpm": {
"overrides": {
"@vanilla-extract/integration": "6.0.1",
"esbuild": "^0.19.8",
"typescript": "~5.3.2"
}
},
"dependencies": {
"statebuilder": "^0.4.2"
}
}