This repository was archived by the owner on Sep 10, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.87 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.87 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
{
"name": "@intentui/cli",
"type": "module",
"version": "3.1.11",
"description": "The command line interface for Intent UI.",
"main": "dist/index.js",
"bin": {
"@intentui/cli": "dist/index.js",
"intentui": "dist/index.js",
"shadcnClone": "dist/shadcn/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/intentuilabs/cli.git"
},
"homepage": "https://intentui.com/cli",
"scripts": {
"dev": "bun build ./src/index.ts --outdir ./dist --target=node --minify --watch",
"start": "bun ./src/index.ts",
"prepare": "npx husky",
"build": "bun build ./src/index.ts --outdir ./dist --target=node --minify && cp -r ./node_modules/shadcn/dist/ ./dist/shadcn",
"format": "biome lint --fix && biome check --write",
"test": "bun run build && bun link",
"beta-release": "bun run build && npm publish --tag beta --access=public",
"preview": "bun run build && bun link",
"pr": "bun run build && git commit -a",
"pre": "chmod a+x dist/index.js",
"release": "export GITHUB_TOKEN=$(cat .github_token) && release-it",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cli",
"intentui cli",
"Intent UI",
"design-system"
],
"author": "Irsyad A. Panjaitan",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@release-it/conventional-changelog": "^10.0.1",
"@types/bun": "latest",
"@types/figlet": "^1.7.0",
"husky": "^9.1.7",
"release-it": "^19.0.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
},
"dependencies": {
"@effect/cli": "^0.63.6",
"@effect/platform": "^0.84.6",
"@effect/platform-node": "^0.85.4",
"effect": "^3.16.3",
"chalk": "^5.4.1",
"figlet": "^1.8.1",
"nanoid": "^5.1.5",
"rc9": "^2.1.2",
"shadcn": "^2.7.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Refactors"
},
{
"type": "chore",
"section": "Chores"
}
]
}
}
}
}
}