forked from riccardoperra/codeimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.17 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.17 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
{
"name": "codeimage",
"version": "0.15.2",
"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,
"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 dev --filter=@codeimage/app",
"libs:build": "pnpm --parallel --filter='./packages' --filter='!@codeimage/config' build && pnpm libs:build:config",
"libs:build:config": "pnpm --filter=@codeimage/config build",
"libs:build:watch": "pnpm --parallel --aggregate-output --filter ./packages --filter='!@codeimage/config' --filter build:watch",
"lint": "pnpm lint --recursive --parallel --filter='@codeimage/*'",
"typecheck": "pnpm typecheck --recursive --parallel --filter='@codeimage/*'",
"build:prod": "pnpm patch-solid-exports && pnpm libs:build && pnpm --filter='@codeimage/config' --filter='@codeimage/app' build",
"changeset:pr": "changeset version && ts-node scripts/sync-package.ts",
"pre-commit": "lint-staged --relative",
"pre-commit-prettier": "prettier --write",
"pre-commit-eslint": "eslint --ext .js,.jsx,.mjs,.ts,.tsx -c .eslintrc.js --fix",
"postinstall": "pnpm patch-solid-exports",
"patch-solid-exports": "cross-env APPLY_PATCH=true ts-node scripts/patch-solid-exports.ts",
"unpatch-solid-exports": "cross-env APPLY_PATCH=false ts-node scripts/patch-solid-exports.ts"
},
"devDependencies": {
"@changesets/assemble-release-plan": "^5.1.2",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@changesets/config": "^1.7.0",
"@changesets/pre": "^1.0.11",
"@changesets/read": "^0.5.5",
"@commitlint/cli": "16.2.3",
"@commitlint/config-angular": "16.2.3",
"@commitlint/config-conventional": "^16.2.4",
"@manypkg/get-packages": "^1.1.3",
"@types/node": "^17.0.31",
"@types/prettier": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-solid": "^0.4.7",
"husky": "7.0.4",
"lint-staged": "^12.4.1",
"lodash": "4.17.21",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14.x",
"pnpm": ">=6.23.2"
}
}