-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.12 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.12 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
{
"name": "@commencis/cli",
"version": "2.0.0",
"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": "git+https://github.com/commencis/cli.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"commencis": "bin/commencis"
},
"files": [
"dist"
],
"type": "module",
"engines": {
"node": ">=22.16"
},
"packageManager": "pnpm@10.25.0",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"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:.*/\"",
"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.2",
"enquirer": "2.4.1",
"gradient-string": "3.0.0",
"handlebars": "4.7.8",
"ora": "9.0.0",
"simple-git": "3.30.0",
"validate-npm-package-name": "7.0.0"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@commencis/commitlint-config": "2.0.0",
"@commencis/eslint-config": "2.4.0",
"@commencis/prettier-config": "2.1.0",
"@commitlint/cli": "20.2.0",
"@svitejs/changesets-changelog-github-compact": "1.2.0",
"@types/node": "24.10.4",
"@types/validate-npm-package-name": "4.0.2",
"eslint": "9.39.2",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.7.4",
"tsup": "8.5.1",
"typescript": "5.9.3"
},
"templateDependencies": {
"@commencis/starter-react-vite": "2.7.0",
"@commencis/template-markdown": "1.0.0"
}
}