@frontstackdev/cli 0.0.0-canary-20240830084126
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/README.md +95 -0
- package/dist/frontstack.mjs +4615 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@frontstackdev/cli",
|
|
3
|
+
"version": "0.0.0-canary-20240830084126",
|
|
4
|
+
"description": "Frontstack CLI for managing projects",
|
|
5
|
+
"exports": "./dist/frontstack.mjs",
|
|
6
|
+
"module": "./dist/frontstack.mjs",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "pkgroll --clean-dist",
|
|
10
|
+
"start": "tsx src/frontstack.ts",
|
|
11
|
+
"frontstack": "pnpm build && node dist/frontstack.mjs",
|
|
12
|
+
"test": "vitest",
|
|
13
|
+
"lint": "tsc"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [],
|
|
16
|
+
"bin": {
|
|
17
|
+
"frontstack": "dist/frontstack.mjs"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"author": "Frontstack GmbH",
|
|
23
|
+
"license": "proprietary",
|
|
24
|
+
"optionalDependencies": {
|
|
25
|
+
"@types/js-yaml": "^4.0.9",
|
|
26
|
+
"@types/node": "^22.5.0"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"commander": "^12.0.0",
|
|
30
|
+
"msw": "^2.2.14",
|
|
31
|
+
"ofetch": "^1.3.4",
|
|
32
|
+
"pkgroll": "^2.4.2",
|
|
33
|
+
"tsx": "^4.18.0",
|
|
34
|
+
"typescript": "^5.5.4",
|
|
35
|
+
"vitest": "^1.5.0"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@kinde-oss/kinde-nodejs-sdk": "^1.2.3",
|
|
39
|
+
"chalk": "^5.3.0",
|
|
40
|
+
"handlebars": "^4.7.8",
|
|
41
|
+
"js-yaml": "^4.1.0",
|
|
42
|
+
"open": "^10.1.0",
|
|
43
|
+
"openapi-typescript": "^6.7.5"
|
|
44
|
+
}
|
|
45
|
+
}
|