-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.42 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "paintai",
"version": "1.0.0",
"description": "AI-powered image generation and editing CLI tool",
"main": "cli.tsx",
"bin": {
"paint": "./dist/cli.js"
},
"type": "module",
"private": false,
"scripts": {
"dev": "bun setup-python-env.ts bun run --hot cli.tsx",
"start": "bun cli.tsx",
"test": "bun setup-python-env.ts test1.tsx",
"build": "bun build cli.tsx --outdir ./dist --target bun",
"install-global": "npm link",
"uninstall-global": "npm unlink -g paint",
"completion-install": "paint --completion install",
"completion-uninstall": "paint --completion uninstall",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"prepare": "husky",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run",
"release:local": "semantic-release --extends ./.releaserc.local.json",
"release:local-dry": "semantic-release --extends ./.releaserc.local.json --dry-run",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:all": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint-staged": "lint-staged",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "bun run format:check && bun run build",
"version:check": "semantic-release --dry-run --no-ci"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "latest",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.0",
"prettier": "^3.6.2",
"semantic-release": "^24.2.9"
},
"peerDependencies": {
"typescript": "^5"
},
"files": [
"dist/",
"README.md"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"release": {
"repositoryUrl": "https://github.com/comfy-deploy/paint",
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
"gitArgs": "--no-verify"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"@ai-sdk/fal": "^1.0.13",
"@clack/prompts": "^0.11.0",
"@fal-ai/client": "^1.6.2",
"@inkjs/ui": "^2.0.0",
"@types/yargs": "^17.0.33",
"ai": "^5.0.48",
"bun_python": "^0.1.10",
"ink": "^6.3.1",
"ink-image": "^2.0.0",
"jimp": "^1.6.0",
"pngjs": "^7.0.0",
"react": "^19.1.1",
"sharp": "^0.34.4",
"term-kitty-img": "^1.0.4",
"terminal-image": "^4.0.0",
"yargs": "^18.0.0"
}
}