croct 0.0.0 → 0.1.0-alpha2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +62 -0
- package/index.js +1832 -0
- package/package.json +94 -7
package/package.json
CHANGED
|
@@ -1,12 +1,99 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "croct",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "",
|
|
3
|
+
"version": "0.1.0-alpha2",
|
|
4
|
+
"description": "A command-line interface (CLI) for managing projects using Croct.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Croct",
|
|
7
|
+
"email": "lib+cli@croct.com",
|
|
8
|
+
"url": "https://github.com/croct-tech/cli"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"croct",
|
|
13
|
+
"personalization",
|
|
14
|
+
"cli",
|
|
15
|
+
"cms"
|
|
16
|
+
],
|
|
5
17
|
"main": "index.js",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
|
|
18
|
+
"bin": "index.js",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/croct-tech/cli.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/croct-tech/cli/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/croct-tech/cli",
|
|
9
27
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
-
|
|
28
|
+
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
|
|
29
|
+
"test": "jest -c jest.config.js --coverage",
|
|
30
|
+
"validate": "tsc --noEmit",
|
|
31
|
+
"build": "tsup",
|
|
32
|
+
"graphql-codegen": "graphql-codegen --config codegen.ts"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@babel/generator": "^7.25.9",
|
|
36
|
+
"@babel/parser": "^7.25.7",
|
|
37
|
+
"@babel/traverse": "^7.25.7",
|
|
38
|
+
"@babel/types": "^7.25.9",
|
|
39
|
+
"@croct/cache": "^0.4.2",
|
|
40
|
+
"@croct/content": "^1.0.0",
|
|
41
|
+
"@croct/content-model": "^0.19.4",
|
|
42
|
+
"@croct/json": "^2.1.0",
|
|
43
|
+
"@croct/json-pointer": "^0.3.0",
|
|
44
|
+
"@croct/json5-parser": "^0.1.0",
|
|
45
|
+
"@croct/logging": "^0.2.3",
|
|
46
|
+
"@croct/md-lite": "^0.3.1",
|
|
47
|
+
"@croct/sdk": "^0.18.0",
|
|
48
|
+
"@jsep-plugin/object": "^1.2.2",
|
|
49
|
+
"@jsep-plugin/spread": "^1.0.3",
|
|
50
|
+
"boxen": "^8.0.1",
|
|
51
|
+
"chalk": "^5.3.0",
|
|
52
|
+
"ci-info": "^4.1.0",
|
|
53
|
+
"cli-cursor": "^5.0.0",
|
|
54
|
+
"clipboardy": "^4.0.0",
|
|
55
|
+
"commander": "^12.1.0",
|
|
56
|
+
"fast-equals": "^5.1.3",
|
|
57
|
+
"gunzip-maybe": "^1.4.2",
|
|
58
|
+
"ignore": "^7.0.3",
|
|
59
|
+
"is-plain-obj": "^4.1.0",
|
|
60
|
+
"is-unicode-supported": "^2.1.0",
|
|
61
|
+
"jsep": "^1.4.0",
|
|
62
|
+
"minimatch": "^10.0.1",
|
|
63
|
+
"node-emoji": "^2.2.0",
|
|
64
|
+
"node-pty": "^1.0.0",
|
|
65
|
+
"open": "^10.1.0",
|
|
66
|
+
"prompts": "^2.4.2",
|
|
67
|
+
"recast": "^0.23.11",
|
|
68
|
+
"semver": "^7.6.3",
|
|
69
|
+
"string-similarity-js": "^2.1.4",
|
|
70
|
+
"strip-ansi": "^7.1.0",
|
|
71
|
+
"tar-stream": "^3.1.7",
|
|
72
|
+
"terminal-link": "^3.0.0",
|
|
73
|
+
"xdg-app-paths": "^8.3.0",
|
|
74
|
+
"zod": "^3.23.8"
|
|
75
|
+
},
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@commander-js/extra-typings": "^12.1.0",
|
|
78
|
+
"@croct/eslint-plugin": "^0.7.1",
|
|
79
|
+
"@graphql-codegen/cli": "^5.0.2",
|
|
80
|
+
"@swc/jest": "^0.2.36",
|
|
81
|
+
"@types/gunzip-maybe": "^1.4.2",
|
|
82
|
+
"@types/jest": "^29.0.0",
|
|
83
|
+
"@types/prompts": "^2.4.9",
|
|
84
|
+
"@types/tar-stream": "^3.1.3",
|
|
85
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
86
|
+
"croct": "^0.0.0",
|
|
87
|
+
"esbuild-plugin-file-path-extensions": "^2.1.4",
|
|
88
|
+
"eslint": "^8.0.0",
|
|
89
|
+
"jest": "^29.7.0",
|
|
90
|
+
"tsc-alias": "^1.8.10",
|
|
91
|
+
"tsup": "^8.4.0",
|
|
92
|
+
"tsx": "^4.19.1",
|
|
93
|
+
"typescript": "^5.6.2"
|
|
94
|
+
},
|
|
95
|
+
"files": [
|
|
96
|
+
"**/*.js",
|
|
97
|
+
"**/*.ts"
|
|
98
|
+
]
|
|
12
99
|
}
|