uni-ticket-system/node_modules/unplugin/package.json
2023-12-05 10:11:10 +08:00

73 lines
2.0 KiB
JSON

{
"name": "unplugin",
"version": "1.3.2",
"packageManager": "pnpm@8.6.5",
"description": "Unified plugin system for build tools",
"license": "MIT",
"repository": "unjs/unplugin",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./dist/webpack/loaders/*": "./dist/webpack/loaders/*.js",
"./dist/rspack/loaders/*": "./dist/rspack/loaders/*.js"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"acorn": "^8.9.0",
"chokidar": "^3.5.3",
"webpack-sources": "^3.2.3",
"webpack-virtual-modules": "^0.5.0"
},
"devDependencies": {
"@ampproject/remapping": "^2.2.1",
"@antfu/eslint-config": "^0.39.6",
"@antfu/ni": "^0.21.4",
"@rspack/cli": "^0.2.4",
"@rspack/core": "^0.2.4",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.3.3",
"@types/webpack-sources": "^3.2.0",
"bumpp": "^9.1.1",
"conventional-changelog-cli": "^3.0.0",
"esbuild": "^0.18.11",
"eslint": "^8.44.0",
"fast-glob": "^3.3.0",
"fs-extra": "^11.1.1",
"jiti": "^1.18.2",
"lint-staged": "^13.2.3",
"magic-string": "^0.30.0",
"picocolors": "^1.0.0",
"rollup": "^3.26.0",
"simple-git-hooks": "^2.8.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vitest": "^0.32.2",
"webpack": "^5.88.1",
"webpack-cli": "4.10.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"release": "bumpp --all -x 'npx conventional-changelog -p angular -i CHANGELOG.md -s' && npm publish",
"test": "nr lint && nr test:build && vitest run",
"test:build": "jiti scripts/buildFixtures.ts"
}
}