Initial commit
This commit is contained in:
78
package.json
Normal file
78
package.json
Normal file
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"name": "@metatrom/ior-resolver",
|
||||
"version": "1.0.0",
|
||||
"description": "Interoperable Object Reference (IOR) resolver for Metro bundler and Node.js with support for local and remote component fetching",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"bin": {
|
||||
"prebuild-ior-types": "./bin/prebuild-ior-types.js"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"require": "./index.js",
|
||||
"import": "./index.js",
|
||||
"types": "./index.d.ts"
|
||||
},
|
||||
"./metro": {
|
||||
"require": "./lib/metro-ior-resolver.js",
|
||||
"types": "./lib/metro-ior-resolver.d.ts"
|
||||
},
|
||||
"./node": {
|
||||
"import": "./bin/NodeImportLoader.ts",
|
||||
"types": "./bin/NodeImportLoader.d.ts"
|
||||
},
|
||||
"./prebuild": {
|
||||
"require": "./bin/prebuild-ior-types.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"prepublishOnly": "npm run build",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"lib/",
|
||||
"bin/",
|
||||
"README.md",
|
||||
"LICENSE"
|
||||
],
|
||||
"keywords": [
|
||||
"ior",
|
||||
"resolver",
|
||||
"metro",
|
||||
"react-native",
|
||||
"node",
|
||||
"import",
|
||||
"loader",
|
||||
"remote",
|
||||
"components",
|
||||
"metatrom",
|
||||
"interoperable"
|
||||
],
|
||||
"author": "Metatrom",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@react-native/metro-config": ">=0.80.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@react-native/metro-config": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/metatrom/ior-resolver.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/metatrom/ior-resolver/issues"
|
||||
},
|
||||
"homepage": "https://github.com/metatrom/ior-resolver#readme"
|
||||
}
|
||||
Reference in New Issue
Block a user