algolia-uploader 0.0.15-beta.2 → 0.0.15
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/dist/index.mjs +535 -32
- package/package.json +74 -18
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "algolia-uploader",
|
|
3
|
-
"version": "0.0.15
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "command-line util to upload Algolia source",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/htnabe/algolia-uploader.git"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
|
-
"bin":
|
|
10
|
+
"bin": {
|
|
11
|
+
"algolia-uploader": "./dist/index.mjs"
|
|
12
|
+
},
|
|
11
13
|
"files": [
|
|
12
14
|
"dist"
|
|
13
15
|
],
|
|
@@ -15,28 +17,30 @@
|
|
|
15
17
|
"node": ">=22.22.1"
|
|
16
18
|
},
|
|
17
19
|
"dependencies": {
|
|
18
|
-
"algoliasearch": "^5.
|
|
20
|
+
"algoliasearch": "^5.55.1",
|
|
19
21
|
"citty": "^0.2.2",
|
|
20
|
-
"es-toolkit": "^1.
|
|
22
|
+
"es-toolkit": "^1.49.0"
|
|
21
23
|
},
|
|
22
24
|
"devDependencies": {
|
|
23
|
-
"@biomejs/biome": "^2.
|
|
24
|
-
"@dotenvx/dotenvx": "^1.
|
|
25
|
-
"@types/node": "^
|
|
25
|
+
"@biomejs/biome": "^2.5.1",
|
|
26
|
+
"@dotenvx/dotenvx": "^1.75.1",
|
|
27
|
+
"@types/node": "^26.0.1",
|
|
26
28
|
"husky": "^9.1.7",
|
|
27
29
|
"jiti": "^2.7.0",
|
|
28
|
-
"lint-staged": "^17.0.
|
|
29
|
-
"npm-check-updates": "^22.2.
|
|
30
|
-
"tsdown": "^0.22.
|
|
30
|
+
"lint-staged": "^17.0.8",
|
|
31
|
+
"npm-check-updates": "^22.2.8",
|
|
32
|
+
"tsdown": "^0.22.3",
|
|
31
33
|
"typescript": "^6.0.3",
|
|
32
|
-
"unrun": "^0.3.
|
|
33
|
-
"vitest": "^4.1.
|
|
34
|
+
"unrun": "^0.3.1",
|
|
35
|
+
"vitest": "^4.1.9"
|
|
34
36
|
},
|
|
35
37
|
"scripts": {
|
|
36
38
|
"build": "tsdown",
|
|
37
39
|
"prepack": "tsdown",
|
|
38
40
|
"prepare": "node .husky/install.mjs",
|
|
39
|
-
"lint": "biome check
|
|
41
|
+
"lint": "biome check .",
|
|
42
|
+
"lint:fix": "biome check --write .",
|
|
43
|
+
"lint:staged": "lint-staged",
|
|
40
44
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
41
45
|
"test": "vitest run",
|
|
42
46
|
"dev": "dotenvx run jiti ./src/index.ts",
|
|
@@ -48,11 +52,63 @@
|
|
|
48
52
|
"author": "htnabe <https://github.com/htnabe>",
|
|
49
53
|
"license": "ISC",
|
|
50
54
|
"lint-staged": {
|
|
51
|
-
"*.{js,ts}": [
|
|
52
|
-
"biome check --write"
|
|
53
|
-
],
|
|
54
|
-
"*.{json,md}": [
|
|
55
|
-
"biome check --write ."
|
|
55
|
+
"*.{js,mjs,cjs,ts,mts,cts,json,md}": [
|
|
56
|
+
"biome check --write --no-errors-on-unmatched"
|
|
56
57
|
]
|
|
58
|
+
},
|
|
59
|
+
"exports": {
|
|
60
|
+
".": "./dist/index.mjs",
|
|
61
|
+
"./package.json": "./package.json"
|
|
62
|
+
},
|
|
63
|
+
"inlinedDependencies": {
|
|
64
|
+
"@dotenvx/dotenvx": "1.75.1",
|
|
65
|
+
"@dotenvx/primitives": "0.8.0",
|
|
66
|
+
"ajv": "8.20.0",
|
|
67
|
+
"ajv-formats": "2.1.1",
|
|
68
|
+
"ansi-colors": "4.1.3",
|
|
69
|
+
"ansi-regex": "5.0.1",
|
|
70
|
+
"atomically": "1.7.0",
|
|
71
|
+
"conf": "10.2.0",
|
|
72
|
+
"cross-spawn": "7.0.6",
|
|
73
|
+
"debounce-fn": "4.0.0",
|
|
74
|
+
"dot-prop": "6.0.1",
|
|
75
|
+
"dotenv": "17.2.3",
|
|
76
|
+
"enquirer": "2.4.1",
|
|
77
|
+
"env-paths": "2.2.1",
|
|
78
|
+
"execa": "5.1.1",
|
|
79
|
+
"fast-deep-equal": "3.1.3",
|
|
80
|
+
"fast-uri": "3.1.2",
|
|
81
|
+
"fdir": "6.5.0",
|
|
82
|
+
"find-up": "3.0.0",
|
|
83
|
+
"get-stream": "6.0.1",
|
|
84
|
+
"human-signals": "2.1.0",
|
|
85
|
+
"is-obj": "2.0.0",
|
|
86
|
+
"is-stream": "2.0.1",
|
|
87
|
+
"isexe": "2.0.0",
|
|
88
|
+
"json-schema-traverse": "1.0.0",
|
|
89
|
+
"locate-path": "3.0.0",
|
|
90
|
+
"merge-stream": "2.0.0",
|
|
91
|
+
"mimic-fn": [
|
|
92
|
+
"2.1.0",
|
|
93
|
+
"3.1.0"
|
|
94
|
+
],
|
|
95
|
+
"npm-run-path": "4.0.1",
|
|
96
|
+
"onetime": "5.1.2",
|
|
97
|
+
"p-limit": "2.3.0",
|
|
98
|
+
"p-locate": "3.0.0",
|
|
99
|
+
"p-try": "2.2.0",
|
|
100
|
+
"path-exists": "3.0.0",
|
|
101
|
+
"path-key": "3.1.1",
|
|
102
|
+
"picomatch": "4.0.4",
|
|
103
|
+
"pkg-up": "3.1.0",
|
|
104
|
+
"semver": "7.8.4",
|
|
105
|
+
"shebang-command": "2.0.0",
|
|
106
|
+
"shebang-regex": "3.0.0",
|
|
107
|
+
"signal-exit": "3.0.7",
|
|
108
|
+
"strip-ansi": "6.0.1",
|
|
109
|
+
"strip-final-newline": "2.0.0",
|
|
110
|
+
"systeminformation": "5.31.7",
|
|
111
|
+
"undici": "7.28.0",
|
|
112
|
+
"which": "2.0.2"
|
|
57
113
|
}
|
|
58
114
|
}
|