@convert-buddy/importer-contracts 0.1.0-beta.1
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 +64 -0
- package/NOTICE +33 -0
- package/README.md +74 -0
- package/dist/index.d.ts +234 -0
- package/dist/index.js +1125 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@convert-buddy/importer-contracts",
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
|
+
"description": "Versioned public contracts for Convert Buddy importer schemas, profiles, transform plans, and delivery",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/**",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"NOTICE",
|
|
20
|
+
"!**/*.map"
|
|
21
|
+
],
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"check": "tsc --noEmit",
|
|
26
|
+
"test": "npm run build && tsc -p tsconfig.test.json && node --test .test-dist/tests/*.test.js",
|
|
27
|
+
"prepack": "npm run check && npm test && node ../../scripts/distribution-policy.mjs package",
|
|
28
|
+
"prepublishOnly": "node ../../scripts/distribution-policy.mjs package"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/node": "^25.0.3",
|
|
32
|
+
"tsup": "^8.5.1",
|
|
33
|
+
"typescript": "^5.5.0"
|
|
34
|
+
},
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=20.17"
|
|
37
|
+
},
|
|
38
|
+
"repository": {
|
|
39
|
+
"type": "git",
|
|
40
|
+
"url": "git+https://github.com/brunohanss/convert-buddy.git",
|
|
41
|
+
"directory": "packages/importer-contracts"
|
|
42
|
+
},
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public",
|
|
45
|
+
"registry": "https://registry.npmjs.org/",
|
|
46
|
+
"provenance": false
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://convert-buddy.app/docs"
|
|
49
|
+
}
|