数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

77 lines
2.1 KiB

{
"name": "unplugin",
"version": "1.5.0",
"packageManager": "pnpm@8.7.5",
"description": "Unified plugin system for build tools",
"license": "MIT",
"repository": "unjs/unplugin",
"sideEffects": false,
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./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"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"prepublishOnly": "nr build",
"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"
},
"dependencies": {
"acorn": "^8.10.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.42.0",
"@antfu/ni": "^0.21.8",
"@rspack/cli": "^0.3.4",
"@rspack/core": "^0.3.4",
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.6.2",
"@types/webpack-sources": "^3.2.0",
"bumpp": "^9.2.0",
"conventional-changelog-cli": "^3.0.0",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"jiti": "^1.20.0",
"lint-staged": "^14.0.1",
"magic-string": "^0.30.3",
"picocolors": "^1.0.0",
"rollup": "^3.29.2",
"simple-git-hooks": "^2.9.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4",
"webpack": "^5.88.2",
"webpack-cli": "4.10.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}