babel-plugin-vasille 0.99.0 → 0.99.1

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -4
package/README.md CHANGED
@@ -29,7 +29,7 @@ npm install vasille-web --save
29
29
  Create an app from a template
30
30
 
31
31
  ```bash
32
- $ npx create vasille
32
+ $ npm create vasille
33
33
  ```
34
34
 
35
35
  Alternative method to create a TypeScript app.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "babel-plugin-vasille",
3
- "version": "0.99.0",
3
+ "version": "0.99.1",
4
4
  "description": "",
5
- "main": "lib/index.js",
6
- "type": "module",
5
+ "main": "lib-node/index.js",
6
+ "type": "commonjs",
7
7
  "exports": {
8
- "import": "./lib/index.js",
8
+ "import": "./lib-node/index.js",
9
9
  "browser": "./lib/index.js",
10
10
  "node": "./lib-node/index.js",
11
11
  "require": "./lib-node/index.js"
@@ -25,6 +25,10 @@
25
25
  ],
26
26
  "author": "lixcode",
27
27
  "license": "MIT",
28
+ "bugs": {
29
+ "url": "https://github.com/vasille-js/vasille-js/issues"
30
+ },
31
+ "homepage": "https://github.com/vasille-js/vasille-js#readme",
28
32
  "dependencies": {
29
33
  "vasille-dx": "^3.0.1"
30
34
  },