@svton/cli 1.0.0
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 +138 -0
- package/bin/svton.js +9 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +750 -0
- package/dist/index.mjs +722 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@svton/cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Svton CLI - Create full-stack applications with NestJS, Next.js, and Taro",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"scaffold",
|
|
8
|
+
"full-stack",
|
|
9
|
+
"nestjs",
|
|
10
|
+
"nextjs",
|
|
11
|
+
"taro",
|
|
12
|
+
"typescript",
|
|
13
|
+
"monorepo"
|
|
14
|
+
],
|
|
15
|
+
"author": "SVTON Team",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"homepage": "https://github.com/751848178/svton#readme",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/751848178/svton.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/751848178/svton/issues"
|
|
24
|
+
},
|
|
25
|
+
"main": "./dist/index.js",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"bin": {
|
|
28
|
+
"svton": "./bin/svton.js"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"bin",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
38
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
39
|
+
"type-check": "tsc --noEmit",
|
|
40
|
+
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
41
|
+
"test": "jest",
|
|
42
|
+
"prepublishOnly": "pnpm build",
|
|
43
|
+
"release": "changeset publish"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18.0.0"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"commander": "^11.1.0",
|
|
50
|
+
"inquirer": "^9.2.12",
|
|
51
|
+
"chalk": "^5.3.0",
|
|
52
|
+
"ora": "^8.0.1",
|
|
53
|
+
"fs-extra": "^11.2.0",
|
|
54
|
+
"mustache": "^4.2.0",
|
|
55
|
+
"validate-npm-package-name": "^5.0.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@changesets/cli": "^2.29.8",
|
|
59
|
+
"@types/fs-extra": "^11.0.4",
|
|
60
|
+
"@types/inquirer": "^9.0.7",
|
|
61
|
+
"@types/mustache": "^4.2.5",
|
|
62
|
+
"@types/node": "^20.10.0",
|
|
63
|
+
"@types/validate-npm-package-name": "^4.0.2",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
65
|
+
"@typescript-eslint/parser": "^6.15.0",
|
|
66
|
+
"eslint": "^8.56.0",
|
|
67
|
+
"jest": "^29.7.0",
|
|
68
|
+
"ts-jest": "^29.1.1",
|
|
69
|
+
"tsup": "^8.0.1",
|
|
70
|
+
"typescript": "^5.3.0"
|
|
71
|
+
},
|
|
72
|
+
"publishConfig": {
|
|
73
|
+
"access": "public"
|
|
74
|
+
}
|
|
75
|
+
}
|