-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.22 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.22 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
{
"name": "@commencis/cli",
"version": "3.0.1",
"description": "Commencis's CLI tool for creating & managing projects",
"author": "Commencis WFE Team <wfedevelopers@commencis.com> (https://commencis.com)",
"license": "Apache-2.0",
"homepage": "https://github.com/Commencis/cli#readme",
"bugs": {
"url": "https://github.com/Commencis/cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Commencis/cli.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"commencis": "bin/commencis"
},
"files": [
"dist"
],
"type": "module",
"engines": {
"node": ">=22.16"
},
"packageManager": "pnpm@10.30.1",
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"lint:check:types": "tsc --noEmit",
"lint:check:js": "eslint .",
"lint:fix:js": "eslint . --fix",
"lint:check:format": "prettier \"**/*.{json,yaml,md}\" --check",
"lint:fix:format": "prettier \"**/*.{json,yaml,md}\" --write",
"lint": "pnpm run \"/^lint:check:.*/\"",
"lint:fix": "pnpm run \"/^lint:fix:.*/\"",
"update:deps": "pnpm update --no-save",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:review": "pnpm run lint",
"precommit": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"chalk": "5.6.2",
"commander": "14.0.3",
"enquirer": "2.4.1",
"gradient-string": "3.0.0",
"handlebars": "4.7.8",
"ora": "9.3.0",
"simple-git": "3.32.2",
"validate-npm-package-name": "7.0.2"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@commencis/commitlint-config": "3.3.0",
"@commencis/eslint-config": "3.5.0",
"@commencis/prettier-config": "3.1.0",
"@commitlint/cli": "20.4.2",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@types/node": "24.10.13",
"@types/validate-npm-package-name": "4.0.2",
"eslint": "9.39.3",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"tsdown": "0.20.3",
"typescript": "6.0.3"
},
"templateDependencies": {
"@commencis/starter-nextjs": "1.0.1",
"@commencis/starter-react-vite": "2.10.0",
"@commencis/template-markdown": "1.0.0"
}
}