goods-exporter 1.2.5 → 1.2.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 +21 -21
- package/README.md +106 -106
- package/dist/bundle.d.ts +9 -0
- package/dist/cjs/index.cjs +30 -4
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.mjs +30 -4
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +88 -88
- package/dist/package.json +0 -87
package/package.json
CHANGED
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
{
|
|
2
|
-
"author": {
|
|
3
|
-
"name": "German Bagdasaryan",
|
|
4
|
-
"email": "german.bagdasaryan@mail.ru"
|
|
5
|
-
},
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "https://github.com/Bagi4-source/goods-converter.git"
|
|
9
|
-
},
|
|
10
|
-
"bugs": {
|
|
11
|
-
"url": "https://github.com/Bagi4-source/goods-converter/issues"
|
|
12
|
-
},
|
|
13
|
-
"name": "goods-exporter",
|
|
14
|
-
"version": "1.2.
|
|
15
|
-
"description": "A versatile JavaScript library for exporting goods data to various formats such as YML, CSV, and Excel. Simplify data export tasks with ease. Supports streams.",
|
|
16
|
-
"main": "./dist/cjs/index.cjs",
|
|
17
|
-
"type": "module",
|
|
18
|
-
"exports": {
|
|
19
|
-
"require": "./dist/cjs/index.cjs",
|
|
20
|
-
"import": "./dist/esm/index.mjs"
|
|
21
|
-
},
|
|
22
|
-
"types": "./dist/bundle.d.ts",
|
|
23
|
-
"files": [
|
|
24
|
-
"dist"
|
|
25
|
-
],
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "rollup -c",
|
|
28
|
-
"build:watch": "rollup -c --watch",
|
|
29
|
-
"test": "vitest",
|
|
30
|
-
"lint": "eslint --ext .ts --fix",
|
|
31
|
-
"test-ui": "vitest --ui",
|
|
32
|
-
"coverage": "vitest run --coverage"
|
|
33
|
-
},
|
|
34
|
-
"keywords": [
|
|
35
|
-
"stream",
|
|
36
|
-
"yml",
|
|
37
|
-
"json",
|
|
38
|
-
"csv",
|
|
39
|
-
"excel",
|
|
40
|
-
"tilda",
|
|
41
|
-
"tg-shop",
|
|
42
|
-
"insales",
|
|
43
|
-
"wocommerce",
|
|
44
|
-
"items",
|
|
45
|
-
"products",
|
|
46
|
-
"goods",
|
|
47
|
-
"export",
|
|
48
|
-
"exporter",
|
|
49
|
-
"tool",
|
|
50
|
-
"yandex",
|
|
51
|
-
"market"
|
|
52
|
-
],
|
|
53
|
-
"dependencies": {
|
|
54
|
-
"@zlooun/exceljs": "^1.0.3",
|
|
55
|
-
"exceljs": "^4.4.0",
|
|
56
|
-
"fast-xml-parser": "^4.4.1",
|
|
57
|
-
"json-stream-stringify": "^3.1.2"
|
|
58
|
-
},
|
|
59
|
-
"devDependencies": {
|
|
60
|
-
"@rollup/plugin-multi-entry": "^6.0.1",
|
|
61
|
-
"@rollup/plugin-typescript": "^11.1.5",
|
|
62
|
-
"@types/node": "^20.8.7",
|
|
63
|
-
"@types/xml": "^1.0.11",
|
|
64
|
-
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
65
|
-
"@vitest/coverage-v8": "^2.0.5",
|
|
66
|
-
"eslint": "^8.53.0",
|
|
67
|
-
"eslint-config-prettier": "^9.0.0",
|
|
68
|
-
"eslint-config-standard-with-typescript": "^39.1.1",
|
|
69
|
-
"eslint-plugin-import": "^2.29.0",
|
|
70
|
-
"eslint-plugin-n": "^16.3.0",
|
|
71
|
-
"eslint-plugin-no-comments": "^1.1.10",
|
|
72
|
-
"eslint-plugin-prettier": "^5.0.1",
|
|
73
|
-
"eslint-plugin-promise": "^6.1.1",
|
|
74
|
-
"eslint-plugin-unused-imports": "^3.0.0",
|
|
75
|
-
"prettier": "^3.1.0",
|
|
76
|
-
"rollup": "^4.3.0",
|
|
77
|
-
"rollup-plugin-dts": "^6.1.0",
|
|
78
|
-
"rollup-plugin-esbuild": "^6.1.0",
|
|
79
|
-
"ts-node": "^10.9.1",
|
|
80
|
-
"tsconfig-paths": "^4.2.0",
|
|
81
|
-
"typescript": "^5.2.2",
|
|
82
|
-
"vitest": "^2.0.5"
|
|
83
|
-
},
|
|
84
|
-
"engines": {
|
|
85
|
-
"node": ">= 16"
|
|
86
|
-
},
|
|
87
|
-
"license": "MIT"
|
|
88
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"author": {
|
|
3
|
+
"name": "German Bagdasaryan",
|
|
4
|
+
"email": "german.bagdasaryan@mail.ru"
|
|
5
|
+
},
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/Bagi4-source/goods-converter.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/Bagi4-source/goods-converter/issues"
|
|
12
|
+
},
|
|
13
|
+
"name": "goods-exporter",
|
|
14
|
+
"version": "1.2.7",
|
|
15
|
+
"description": "A versatile JavaScript library for exporting goods data to various formats such as YML, CSV, and Excel. Simplify data export tasks with ease. Supports streams.",
|
|
16
|
+
"main": "./dist/cjs/index.cjs",
|
|
17
|
+
"type": "module",
|
|
18
|
+
"exports": {
|
|
19
|
+
"require": "./dist/cjs/index.cjs",
|
|
20
|
+
"import": "./dist/esm/index.mjs"
|
|
21
|
+
},
|
|
22
|
+
"types": "./dist/bundle.d.ts",
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "rollup -c",
|
|
28
|
+
"build:watch": "rollup -c --watch",
|
|
29
|
+
"test": "vitest",
|
|
30
|
+
"lint": "eslint --ext .ts --fix",
|
|
31
|
+
"test-ui": "vitest --ui",
|
|
32
|
+
"coverage": "vitest run --coverage"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"stream",
|
|
36
|
+
"yml",
|
|
37
|
+
"json",
|
|
38
|
+
"csv",
|
|
39
|
+
"excel",
|
|
40
|
+
"tilda",
|
|
41
|
+
"tg-shop",
|
|
42
|
+
"insales",
|
|
43
|
+
"wocommerce",
|
|
44
|
+
"items",
|
|
45
|
+
"products",
|
|
46
|
+
"goods",
|
|
47
|
+
"export",
|
|
48
|
+
"exporter",
|
|
49
|
+
"tool",
|
|
50
|
+
"yandex",
|
|
51
|
+
"market"
|
|
52
|
+
],
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@zlooun/exceljs": "^1.0.3",
|
|
55
|
+
"exceljs": "^4.4.0",
|
|
56
|
+
"fast-xml-parser": "^4.4.1",
|
|
57
|
+
"json-stream-stringify": "^3.1.2"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@rollup/plugin-multi-entry": "^6.0.1",
|
|
61
|
+
"@rollup/plugin-typescript": "^11.1.5",
|
|
62
|
+
"@types/node": "^20.8.7",
|
|
63
|
+
"@types/xml": "^1.0.11",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
65
|
+
"@vitest/coverage-v8": "^2.0.5",
|
|
66
|
+
"eslint": "^8.53.0",
|
|
67
|
+
"eslint-config-prettier": "^9.0.0",
|
|
68
|
+
"eslint-config-standard-with-typescript": "^39.1.1",
|
|
69
|
+
"eslint-plugin-import": "^2.29.0",
|
|
70
|
+
"eslint-plugin-n": "^16.3.0",
|
|
71
|
+
"eslint-plugin-no-comments": "^1.1.10",
|
|
72
|
+
"eslint-plugin-prettier": "^5.0.1",
|
|
73
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
74
|
+
"eslint-plugin-unused-imports": "^3.0.0",
|
|
75
|
+
"prettier": "^3.1.0",
|
|
76
|
+
"rollup": "^4.3.0",
|
|
77
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
78
|
+
"rollup-plugin-esbuild": "^6.1.0",
|
|
79
|
+
"ts-node": "^10.9.1",
|
|
80
|
+
"tsconfig-paths": "^4.2.0",
|
|
81
|
+
"typescript": "^5.2.2",
|
|
82
|
+
"vitest": "^2.0.5"
|
|
83
|
+
},
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">= 16"
|
|
86
|
+
},
|
|
87
|
+
"license": "MIT"
|
|
88
|
+
}
|
package/dist/package.json
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"author": {
|
|
3
|
-
"name": "German Bagdasaryan",
|
|
4
|
-
"email": "german.bagdasaryan@mail.ru"
|
|
5
|
-
},
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "https://github.com/Bagi4-source/goods-converter.git"
|
|
9
|
-
},
|
|
10
|
-
"bugs": {
|
|
11
|
-
"url": "https://github.com/Bagi4-source/goods-converter/issues"
|
|
12
|
-
},
|
|
13
|
-
"name": "goods-exporter",
|
|
14
|
-
"version": "1.1.3",
|
|
15
|
-
"description": "A versatile JavaScript library for exporting goods data to various formats such as YML, CSV, and Excel. Simplify data export tasks with ease. Supports streams.",
|
|
16
|
-
"main": "./dist/cjs/index.cjs",
|
|
17
|
-
"type": "module",
|
|
18
|
-
"exports": {
|
|
19
|
-
"require": "./dist/cjs/index.cjs",
|
|
20
|
-
"import": "./dist/esm/index.mjs"
|
|
21
|
-
},
|
|
22
|
-
"types": "./dist/bundle.d.ts",
|
|
23
|
-
"files": [
|
|
24
|
-
"dist"
|
|
25
|
-
],
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "rollup -c",
|
|
28
|
-
"build:watch": "rollup -c --watch",
|
|
29
|
-
"test": "vitest",
|
|
30
|
-
"lint": "eslint --ext .ts --fix",
|
|
31
|
-
"test-ui": "vitest --ui",
|
|
32
|
-
"coverage": "vitest run --coverage"
|
|
33
|
-
},
|
|
34
|
-
"keywords": [
|
|
35
|
-
"stream",
|
|
36
|
-
"yml",
|
|
37
|
-
"json",
|
|
38
|
-
"csv",
|
|
39
|
-
"excel",
|
|
40
|
-
"tilda",
|
|
41
|
-
"tg-shop",
|
|
42
|
-
"insales",
|
|
43
|
-
"items",
|
|
44
|
-
"products",
|
|
45
|
-
"goods",
|
|
46
|
-
"export",
|
|
47
|
-
"exporter",
|
|
48
|
-
"tool",
|
|
49
|
-
"yandex",
|
|
50
|
-
"market"
|
|
51
|
-
],
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"@zlooun/exceljs": "^1.0.3",
|
|
54
|
-
"exceljs": "^4.4.0",
|
|
55
|
-
"fast-xml-parser": "^4.4.1",
|
|
56
|
-
"json-stream-stringify": "^3.1.2"
|
|
57
|
-
},
|
|
58
|
-
"devDependencies": {
|
|
59
|
-
"@rollup/plugin-multi-entry": "^6.0.1",
|
|
60
|
-
"@rollup/plugin-typescript": "^11.1.5",
|
|
61
|
-
"@types/node": "^20.8.7",
|
|
62
|
-
"@types/xml": "^1.0.11",
|
|
63
|
-
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
64
|
-
"@vitest/coverage-v8": "^2.0.5",
|
|
65
|
-
"eslint": "^8.53.0",
|
|
66
|
-
"eslint-config-prettier": "^9.0.0",
|
|
67
|
-
"eslint-config-standard-with-typescript": "^39.1.1",
|
|
68
|
-
"eslint-plugin-import": "^2.29.0",
|
|
69
|
-
"eslint-plugin-n": "^16.3.0",
|
|
70
|
-
"eslint-plugin-no-comments": "^1.1.10",
|
|
71
|
-
"eslint-plugin-prettier": "^5.0.1",
|
|
72
|
-
"eslint-plugin-promise": "^6.1.1",
|
|
73
|
-
"eslint-plugin-unused-imports": "^3.0.0",
|
|
74
|
-
"prettier": "^3.1.0",
|
|
75
|
-
"rollup": "^4.3.0",
|
|
76
|
-
"rollup-plugin-dts": "^6.1.0",
|
|
77
|
-
"rollup-plugin-esbuild": "^6.1.0",
|
|
78
|
-
"ts-node": "^10.9.1",
|
|
79
|
-
"tsconfig-paths": "^4.2.0",
|
|
80
|
-
"typescript": "^5.2.2",
|
|
81
|
-
"vitest": "^2.0.5"
|
|
82
|
-
},
|
|
83
|
-
"engines": {
|
|
84
|
-
"node": ">= 16"
|
|
85
|
-
},
|
|
86
|
-
"license": "MIT"
|
|
87
|
-
}
|