npm-pkgbuild
Version:
create ArchLinux, RPM and Debian packages from npm packages
103 lines (102 loc) • 3.14 kB
JSON
{
"name": "npm-pkgbuild",
"version": "18.2.11",
"publishConfig": {
"access": "public",
"provenance": false
},
"types": "./types/module.d.mts",
"exports": {
".": {
"types": "./types/module.d.mts",
"default": "./src/module.mjs"
}
},
"description": "create ArchLinux, RPM and Debian packages from npm packages",
"keywords": [
"ArchLinux",
"arch-linux",
"aur",
"buildah",
"deb",
"debian",
"docker",
"makepkg",
"package",
"pacman",
"pkgbuild",
"rpm",
"rpmspec"
],
"contributors": [
{
"name": "Markus Felten",
"email": "markus.felten@gmx.de"
}
],
"license": "0BSD",
"bin": {
"npm-pkgbuild": "src/npm-pkgbuild-cli.mjs"
},
"scripts": {
"prepare": "node --run prepare:typescript",
"prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
"test": "node --run test:ava",
"test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme --section=API ./src**/*.mjs",
"lint": "node --run lint:docs && node --run lint:typescript",
"lint:docs": "documentation lint ./src**/*.mjs",
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs",
"tsc:types": "tsc -d --allowJs --declarationDir dist --emitDeclarationOnly ./src/extract-from-package.mjs"
},
"dependencies": {
"@npmcli/arborist": "^9.1.1",
"@vercel/nft": "^0.29.4",
"aggregate-async-iterator": "^1.2.2",
"commander": "^14.0.0",
"compare-versions": "^6.1.1",
"content-entry": "^14.2.3",
"content-entry-filesystem": "^9.0.10",
"content-entry-transform": "^1.5.7",
"execa": "^9.6.0",
"expression-expander": "^7.2.7",
"ini": "^5.0.0",
"iterable-string-interceptor": "^3.0.2",
"key-value-transformer": "^3.3.0",
"npm-package-walker": "^8.0.9",
"npm-packlist": "^10.0.0",
"pacote": "^21.0.0",
"pkg-dir": "^8.0.0",
"tar-stream": "^3.1.7",
"uti": "^8.9.0"
},
"devDependencies": {
"@types/node": "^24.0.1",
"ava": "^6.4.0",
"c8": "^10.1.3",
"documentation": "^14.0.3",
"semantic-release": "^24.2.5",
"stream-buffers": "^3.0.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22.16.0",
"bun": ">=1.2.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arlac77/npm-pkgbuild.git"
},
"bugs": {
"url": "https://github.com/arlac77/npm-pkgbuild/issues"
},
"homepage": "https://github.com/arlac77/npm-pkgbuild#readme",
"template": {
"inheritFrom": [
"arlac77/template-arlac77-github",
"arlac77/template-javascript-component",
"arlac77/template-typescript"
]
}
}