-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.45 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
{
"name": "selize",
"version": "0.2.0",
"author": "Snroe",
"license": "MIT",
"description": "",
"keywords": [
"Snroe",
"selize",
"selize-cli",
"express",
"typescript",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/snroe/selize.git"
},
"bugs": "https://github.com/snroe/selize/issues",
"type": "module",
"main": "lib/cli.js",
"types": "lib/cli.d.ts",
"bin": {
"selize": "lib/cli.js"
},
"changelogFile": "CHANGELOG.md",
"scripts": {
"build": "tsc && pnpm gulp ",
"clean": "rimraf ./lib ./node_modules/.tmp",
"release": "standard-version --commit-message \"chore(release): {{currentVersion}} [skip ci]\"",
"publish": "npm publish --access public"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20.0.0",
"bun": ">=1.0.0"
},
"dependencies": {
"@inquirer/core": "^10.1.14",
"@inquirer/prompts": "^7.6.0",
"@selize/utils": "^0.1.15",
"ansi-escapes": "^7.0.0",
"commander": "^14.0.0",
"deepmerge": "^4.3.1",
"fs-extra": "^11.3.0",
"glob": "^11.0.3",
"i18next": "^25.3.2",
"i18next-fs-backend": "^2.6.0",
"inquirer-toggle": "^1.0.1",
"ora": "^8.2.0",
"rimraf": "^6.0.1",
"simple-git": "^3.28.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/gulp": "^4.0.17",
"gulp": "^5.0.1",
"standard-version": "^9.5.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}