UNPKG

presea

Version:

An unbuild preset for bundling Node single executable applications

74 lines 1.73 kB
{ "name": "presea", "version": "0.0.10", "description": "An unbuild preset for bundling Node single executable applications", "keywords": [ "unbuild", "node", "sea" ], "homepage": "https://github.com/yjl9903/presea#readme", "bugs": { "url": "https://github.com/yjl9903/presea/issues" }, "repository": { "type": "git", "url": "git+https://github.com/yjl9903/presea.git" }, "license": "MIT", "author": "XLor", "sideEffects": false, "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs", "types": "./dist/index.d.ts" }, "./unbuild": { "require": "./dist/unbuild.cjs", "import": "./dist/unbuild.mjs", "types": "./dist/unbuild.d.ts" } }, "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist" ], "dependencies": { "@breadc/color": "^0.9.6", "execa": "^8.0.1", "postject": "1.0.0-alpha.6" }, "devDependencies": { "@types/node": "^20.6.5", "bumpp": "latest", "turbo": "^1.10.14", "typescript": "^5.2.2", "unbuild": "^2.0.0", "vite": "^4.4.9", "vitest": "^0.34.5" }, "optionalDependencies": { "unbuild": "^2.0.0" }, "packageManager": "pnpm@8.7.6", "engines": { "node": ">=v20.7.0" }, "volta": { "node": "20.7.0" }, "scripts": { "build": "unbuild", "dev": "unbuild --stub", "format": "prettier --write src/**/*.ts test/**/*.ts", "release": "bumpp package.json --commit --push --tag && pnpm publish", "test": "vitest", "test:ci": "vitest --run", "typecheck": "tsc --noEmit", "preversion": "pnpm build", "postversion": "pnpm build" } }