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.
66 lines
1.9 KiB
66 lines
1.9 KiB
{
|
|
"name": "unplugin",
|
|
"version": "1.1.0",
|
|
"packageManager": "pnpm@7.26.3",
|
|
"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/load": "./dist/webpack/loaders/load.js",
|
|
"./dist/webpack/loaders/transform": "./dist/webpack/loaders/transform.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 --ext ts .",
|
|
"lint:fix": "nr lint --fix",
|
|
"prepublishOnly": "nr build",
|
|
"release": "bumpp --commit --push --tag --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.35.2",
|
|
"@antfu/ni": "^0.20.0",
|
|
"@types/express": "^4.17.17",
|
|
"@types/fs-extra": "^11.0.1",
|
|
"@types/node": "^18.13.0",
|
|
"@types/webpack-sources": "^3.2.0",
|
|
"bumpp": "^8.2.1",
|
|
"conventional-changelog-cli": "^2.2.2",
|
|
"enhanced-resolve": "^5.12.0",
|
|
"esbuild": "^0.17.8",
|
|
"eslint": "^8.34.0",
|
|
"fast-glob": "^3.2.12",
|
|
"fs-extra": "^11.1.0",
|
|
"jiti": "^1.17.0",
|
|
"magic-string": "^0.29.0",
|
|
"picocolors": "^1.0.0",
|
|
"rollup": "^3.15.0",
|
|
"tsup": "^6.6.3",
|
|
"typescript": "^4.9.5",
|
|
"vite": "^4.1.1",
|
|
"vitest": "^0.28.5",
|
|
"webpack": "^5.75.0",
|
|
"webpack-cli": "4.10.0"
|
|
}
|
|
}
|
|
|