@farmfe/plugin-url
Version:
🍣 A farm plugin which imports files as data-URIs or ES Modules.
67 lines • 1.85 kB
JSON
{
"name": "@farmfe/plugin-url",
"version": "0.0.9",
"main": "scripts/index.js",
"types": "scripts/index.d.ts",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/farm-fe/plugins",
"author": "CCherry07 <2405693142@qq.com>",
"bugs": {
"url": "https://github.com/farm-fe/plugins/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farm-fe/plugins.git"
},
"keywords": [
"rust",
"url",
"farmfe"
],
"devDependencies": {
"@farmfe/plugin-tools": "latest"
},
"napi": {
"name": "farmfe_plugin_url",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl",
"i686-pc-windows-msvc",
"aarch64-pc-windows-msvc"
]
}
},
"exports": {
".": {
"import": "./scripts/func.js",
"types": "./scripts/index.d.ts",
"default": "./scripts/index.js"
},
"./package.json": "./package.json"
},
"files": [
"scripts",
"options.d.ts"
],
"optionalDependencies": {
"@farmfe/plugin-url-darwin-arm64": "0.0.9",
"@farmfe/plugin-url-darwin-x64": "0.0.9",
"@farmfe/plugin-url-linux-arm64-gnu": "0.0.9",
"@farmfe/plugin-url-linux-arm64-musl": "0.0.9",
"@farmfe/plugin-url-linux-x64-gnu": "0.0.9",
"@farmfe/plugin-url-linux-x64-musl": "0.0.9",
"@farmfe/plugin-url-win32-arm64-msvc": "0.0.9",
"@farmfe/plugin-url-win32-ia32-msvc": "0.0.9",
"@farmfe/plugin-url-win32-x64-msvc": "0.0.9"
},
"scripts": {
"dev": "cargo watch -w src -s 'scripts/watch.sh'",
"bump": "npx changeset version",
"play": "pnpm --filter playground dev",
"build": "farm-plugin-tools build --platform --cargo-name farmfe_plugin_url -p farmfe_plugin_url --release"
}
}