mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 15:29:29 +08:00
52 lines
No EOL
1.3 KiB
Text
52 lines
No EOL
1.3 KiB
Text
{
|
|
"name": "node-fetch-native",
|
|
"version": "0.1.4",
|
|
"description": "A better redistribution of `node-fetch`",
|
|
"repository": "unjs/node-fetch-native",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"node": {
|
|
"require": "./lib/index.cjs",
|
|
"import": "./dist/index.mjs"
|
|
},
|
|
"import": "./dist/native.mjs"
|
|
},
|
|
"./polyfill": {
|
|
"node": {
|
|
"require": "./dist/polyfill.cjs",
|
|
"import": "./dist/polyfill.mjs"
|
|
},
|
|
"import": "./lib/empty.mjs"
|
|
},
|
|
"./src/index.js": {
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"main": "./lib/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./lib/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"@nuxtjs/eslint-config-typescript": "latest",
|
|
"abort-controller": "^3.0.0",
|
|
"c8": "latest",
|
|
"eslint": "latest",
|
|
"node-fetch": "^3.2.6",
|
|
"standard-version": "latest",
|
|
"typescript": "latest",
|
|
"unbuild": "latest",
|
|
"vitest": "latest"
|
|
},
|
|
"packageManager": "pnpm@7.3.0",
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"lint": "eslint --ext .ts,.js,.mjs,.cjs .",
|
|
"release": "pnpm test && standard-version && git push --follow-tags && pnpm publish",
|
|
"test": "pnpm lint && pnpm build && vitest run"
|
|
}
|
|
} |