You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fetch-inject/package.json

49 lines
1.3 KiB
JSON

{
"name": "fetch-inject",
"version": "3.2.0",
"description": "Dynamically inline assets into the DOM using Fetch Injection.",
"author": "VHS <vhsdev@tutanota.com> (https://vhs.codeberg.page)",
"keywords": [
"fetch",
"import",
"async",
"promise",
"script"
],
"homepage": "https://vhs.codeberg.page/code/fetch-inject/",
"repository": {
"type": "git",
"url": "https://codeberg.org/vhs/fetch-inject.git"
},
"scripts": {
"dev": "miniserve --index test-harness.html",
"build": "esbuild fetch-inject.js --minify --outfile=fetch-inject.min.js",
"package": "pnpm lint && pnpm build && pnpm test",
"test": "PW_EXPERIMENTAL_TS_ESM=1 playwright test",
"lint": "prettier --ignore-path .gitignore --check **/*.{js,ts,html}",
"format": "prettier --ignore-path .gitignore --write **/*.{js,ts,html}",
"changeset": "changeset"
},
"devDependencies": {
"@changesets/cli": "^2.21.1",
"@playwright/test": "^1.19.2",
"esbuild": "^0.14.27",
"miniserve": "^0.2.1",
"prettier": "^2.5.1"
},
"files": [
"COPYING",
"docs",
"fetch-inject.min.js",
"fetch-inject.js",
"module.d.ts",
"README.md"
],
"type": "module",
"browser": "fetch-inject.min.js",
"main": "fetch-inject.min.js",
"module": "fetch-inject.min.js",
"typings": "module.d.ts",
"license": "Zlib"
}