数通智联化工云平台
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.
 
 
 
 
 

75 lines
2.0 KiB

{
"name": "unplugin",
"version": "1.3.1",
"packageManager": "pnpm@7.29.1",
"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"
],
"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.8.2",
"chokidar": "^3.5.3",
"webpack-sources": "^3.2.3",
"webpack-virtual-modules": "^0.5.0"
},
"devDependencies": {
"@ampproject/remapping": "^2.2.0",
"@antfu/eslint-config": "^0.36.0",
"@antfu/ni": "^0.20.0",
"@rspack/core": "^0.1.0",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.0",
"@types/webpack-sources": "^3.2.0",
"bumpp": "^9.0.0",
"conventional-changelog-cli": "^2.2.2",
"enhanced-resolve": "^5.12.0",
"esbuild": "^0.17.11",
"eslint": "^8.36.0",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.0",
"jiti": "^1.17.2",
"lint-staged": "^13.2.0",
"magic-string": "^0.30.0",
"picocolors": "^1.0.0",
"rollup": "^3.19.1",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2",
"webpack": "^5.76.1",
"webpack-cli": "4.10.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}