-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.71 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
106
107
108
109
{
"name": "justd-cli",
"type": "module",
"version": "2.2.14",
"description": "The command line interface for Justd.",
"main": "dist/index.js",
"bin": {
"justd-cli": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justdlabs/cli.git"
},
"homepage": "https://getjustd.com/cli",
"scripts": {
"dev": "tsup --watch",
"prepare": "npx husky",
"build": "tsup && npm run format",
"format": "prettier --write \"src/**/*.ts\"",
"test": "npm run build && npm link",
"preview": "npm run clean && npm run build && npm link",
"pr": "npm unlink -g && npm run build && git commit -a",
"pre": "chmod a+x dist/index.js",
"release": "export GITHUB_TOKEN=$(cat .github_token) && release-it"
},
"keywords": [
"cli",
"justd cli",
"Justd",
"design-system",
"justd"
],
"author": "Irsyad A. Panjaitan",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@release-it/conventional-changelog": "^8.0.1",
"@types/babel__core": "^7.20.5",
"@types/diff": "^5.2.1",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.10",
"husky": "^9.1.5",
"prettier": "^3.3.2",
"release-it": "^17.5.0",
"rimraf": "^5.0.9",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"dependencies": {
"@antfu/ni": "^0.21.12",
"@babel/core": "^7.24.8",
"@babel/parser": "^7.24.8",
"@babel/plugin-transform-typescript": "^7.24.8",
"@inquirer/prompts": "^5.1.2",
"commander": "^12.1.0",
"diff": "^5.2.0",
"figlet": "^1.8.0",
"open": "^10.1.0",
"ora": "^8.0.1",
"recharts": "^2.15.0",
"strip-json-comments": "^5.0.1"
},
"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"
}
]
}
}
}
}
}