@owox/connectors 0.0.0
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.cjs +15097 -0
- package/dist/index.js +15105 -0
- package/dist/manifest.json +173 -0
- package/dist/temp/index.js +18453 -0
- package/package.json +40 -0
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@owox/connectors",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Connectors and storages for different data sources",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "vite build --config vite.config.js",
|
|
12
|
+
"clean": "shx rm -rf dist",
|
|
13
|
+
"prebuild": "npm run clean",
|
|
14
|
+
"analyze": "npm run build -- --mode analyze",
|
|
15
|
+
"prepack": "npm run build",
|
|
16
|
+
"prepublishOnly": "npm audit && npm run lint",
|
|
17
|
+
"lint": "eslint . --config ./eslint.config.js",
|
|
18
|
+
"lint:fix": "eslint . --fix --config ./eslint.config.js",
|
|
19
|
+
"lint:md": "markdownlint-cli2 --config ../../.markdownlint-cli2.mjs",
|
|
20
|
+
"lint:md:fix": "markdownlint-cli2 --config ../../.markdownlint-cli2.mjs --fix",
|
|
21
|
+
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"",
|
|
22
|
+
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json}\""
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist/"
|
|
26
|
+
],
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"require": "./dist/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/node": "^20.0.0",
|
|
35
|
+
"chokidar": "^3.5.0",
|
|
36
|
+
"fs-extra": "^11.0.0",
|
|
37
|
+
"glob": "^10.0.0",
|
|
38
|
+
"vite": "^6.3.5"
|
|
39
|
+
}
|
|
40
|
+
}
|