json-as-xlsx 2.3.5 → 2.3.10

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 CHANGED
@@ -50,7 +50,7 @@ xlsx(data, settings) // Will download the excel file
50
50
 
51
51
  ## Examples
52
52
 
53
- This are files used for development, please change imports from `./index.js` to `json-as-xlsx`
53
+ This are files used for development, please change imports from `../../src/index.js` to `json-as-xlsx`
54
54
 
55
- * [VueJS with JavaScript](https://github.com/LuisEnMarroquin/json-as-xlsx/blob/main/src/App.vue)
56
- * [Express with TypeScript](https://github.com/LuisEnMarroquin/json-as-xlsx/blob/main/server.ts)
55
+ * [VueJS with JavaScript](https://github.com/LuisEnMarroquin/json-as-xlsx/blob/main/examples/vue-app/App.vue)
56
+ * [Express with TypeScript](https://github.com/LuisEnMarroquin/json-as-xlsx/blob/main/examples/express/server.ts)
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "json-as-xlsx",
3
- "version": "2.3.5",
4
- "main": "index.js",
3
+ "version": "2.3.10",
4
+ "main": "src/index.js",
5
5
  "license": "MIT",
6
6
  "types": "types/index.d.ts",
7
7
  "description": "Create excel xlsx file from json",
8
8
  "author": "LuisEnMarroquin <luis@marroquin.dev>",
9
9
  "homepage": "https://xlsx.marroquin.dev",
10
10
  "scripts": {
11
- "start": "tsc --watch index.ts",
12
- "build": "tsc index.ts && uglifyjs index.js --output index.js",
11
+ "start": "tsc --watch src/index.ts",
12
+ "build": "tsc src/index.ts && uglifyjs src/index.js --output src/index.js",
13
13
  "start-client": "vue-cli-service serve",
14
14
  "build-client": "vue-cli-service build",
15
- "start-server": "npx nodemon --exec npx ts-node --skip-project server.ts",
15
+ "start-server": "npx nodemon --exec npx ts-node --skip-project examples/express/server.ts",
16
16
  "lint": "ts-standard --fix",
17
17
  "test": "jest"
18
18
  },
@@ -23,7 +23,7 @@
23
23
  "@types/express": "^4.17.13",
24
24
  "@types/jest": "^27.0.2",
25
25
  "@types/node": "^17.0.0",
26
- "@vue/cli-service": "^3.12.1",
26
+ "@vue/cli-service": "^4.5.15",
27
27
  "express": "^4.17.1",
28
28
  "jest": "^27.3.1",
29
29
  "ts-jest": "^27.0.7",
@@ -34,7 +34,7 @@
34
34
  "vue-template-compiler": "^2.6.14"
35
35
  },
36
36
  "files": [
37
- "index.js",
37
+ "src/index.js",
38
38
  "types/index.d.ts"
39
39
  ],
40
40
  "repository": {
@@ -50,7 +50,6 @@
50
50
  "excel",
51
51
  "jsonc",
52
52
  "json-xlsx",
53
- "microsoft",
54
53
  "xlsx-json",
55
54
  "create-xlsx",
56
55
  "create-excel",
@@ -58,8 +57,10 @@
58
57
  "json-to-xlsx",
59
58
  "json-as-excel",
60
59
  "json-to-excel",
61
- "microsoft-xlsx",
60
+ "xlsx-as-json",
62
61
  "xlsx-from-json",
62
+ "microsoft",
63
+ "microsoft-xlsx",
63
64
  "microsoft-excel"
64
65
  ],
65
66
  "browserslist": [
File without changes