create-nextion-app 0.6.3

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.
Files changed (3) hide show
  1. package/README.md +12 -0
  2. package/bin/index.js +3 -0
  3. package/package.json +43 -0
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # create-nextion-app
2
+
3
+ Unscoped npm create alias for
4
+ [`@notionx/create-nextion-app`](https://www.npmjs.com/package/@notionx/create-nextion-app).
5
+
6
+ ```bash
7
+ npm create nextion-app
8
+ ```
9
+
10
+ This package only forwards to the scoped Nextion scaffolder so users can run the
11
+ short `npm create nextion-app` command. The implementation lives in
12
+ `@notionx/create-nextion-app`.
package/bin/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ import "@notionx/create-nextion-app/dist/index.js";
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "create-nextion-app",
3
+ "version": "0.6.3",
4
+ "description": "Unscoped npm create alias for @notionx/create-nextion-app.",
5
+ "type": "module",
6
+ "bin": {
7
+ "create-nextion-app": "./bin/index.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md"
12
+ ],
13
+ "keywords": [
14
+ "nextion",
15
+ "notion",
16
+ "cloudflare",
17
+ "workers",
18
+ "vinext",
19
+ "scaffold",
20
+ "create-nextion-app"
21
+ ],
22
+ "license": "MIT",
23
+ "engines": {
24
+ "node": ">=22"
25
+ },
26
+ "dependencies": {
27
+ "@notionx/create-nextion-app": "^0.6.0"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public",
31
+ "registry": "https://registry.npmjs.org/"
32
+ },
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/digwis/nextion.git",
36
+ "directory": "packages/create-nextion-app-shim"
37
+ },
38
+ "author": "zhaofilms",
39
+ "homepage": "https://github.com/digwis/nextion#readme",
40
+ "bugs": {
41
+ "url": "https://github.com/digwis/nextion/issues"
42
+ }
43
+ }