-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "heeje",
"version": "1.0.3",
"description": "",
"main": "bin/cli.js",
"scripts": {
"start": "node bin/cli.js",
"clean": "rimraf bin",
"build": "pnpm clean && rollup -c rollup.config.js --bundleConfigAsCjs",
"release": "semantic-release",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky"
},
"bin": {
"heeje": "bin/cli.js"
},
"files": [
"bin/cli.js"
],
"keywords": [],
"author": "holim0",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^7.2.2",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.0.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"babel-jest": "^29.7.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.30.1",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/holim0/heeje-cli.git"
}
}