create-widget 0.0.5 → 0.0.7

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 CHANGED
@@ -24,10 +24,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
24
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
25
  SOFTWARE.
26
26
 
27
- ## Licenses of bundled dependencies
28
-
29
- The published create-vue artifact additionally contains code with the following licenses:
30
-
31
-
32
- ## Bundled dependencies
33
27
 
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "create-widget",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "main": "lib/index.js",
5
5
  "author": "Neo Fu",
6
6
  "license": "MIT",
7
7
  "private": false,
8
8
  "bin": {
9
- "create-widget": "lib/index.cjs"
9
+ "create-widget": "index.cjs"
10
10
  },
11
11
  "files": [
12
- "lib/index.cjs",
12
+ "index.cjs",
13
13
  "template"
14
14
  ],
15
15
  "publishConfig": {
16
16
  "access": "public"
17
17
  },
18
18
  "engines": {
19
- "node": "^12.0.0 || >= 14.0.0"
19
+ "node": ">=v16.20.0"
20
20
  },
21
21
  "dependencies": {
22
22
  "chalk": "^4.1.2",
@@ -45,7 +45,7 @@
45
45
  "build": "zx ./scripts/build.mjs",
46
46
  "watch": "tsup-node src/index.ts --format cjs --watch",
47
47
  "build:run": "npm run build && npm run create-widget",
48
- "create-widget": "node ./lib/index.js",
48
+ "test": "node index.cjs",
49
49
  "pnpm:publish": "npm run build && pnpm publish --no-git-checks"
50
50
  }
51
51
  }
File without changes