goods-exporter 1.4.4 → 1.4.5
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 +2 -2
- package/dist/cjs/index.cjs +2 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/index.mjs.map +1 -1
- package/package.json +87 -87
package/package.json
CHANGED
|
@@ -1,87 +1,87 @@
|
|
|
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.4.
|
|
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
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"eslint-plugin
|
|
64
|
-
"
|
|
65
|
-
"eslint
|
|
66
|
-
"prettier": "^
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
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.4.5",
|
|
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
|
+
"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
|
+
}
|