forked from unjs/unplugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "unplugin",
"type": "module",
"version": "2.1.0",
"packageManager": "pnpm@9.15.0",
"description": "Unified plugin system for build tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unjs/unplugin.git"
},
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./dist/webpack/loaders/*": "./dist/webpack/loaders/*.cjs",
"./dist/rspack/loaders/*": "./dist/rspack/loaders/*.cjs"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch src",
"lint": "eslint --cache .",
"lint:fix": "nr lint --fix",
"typecheck": "tsc --noEmit",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"docs:gen-files": "pnpm -C docs run gen-files",
"prepublishOnly": "nr build",
"release": "bumpp --all && npm publish",
"test": "nr test:build && vitest run --pool=forks",
"test:build": "jiti scripts/buildFixtures.ts"
},
"dependencies": {
"acorn": "^8.14.0",
"webpack-virtual-modules": "^0.6.2"
},
"devDependencies": {
"@ampproject/remapping": "^2.3.0",
"@antfu/eslint-config": "^3.12.0",
"@antfu/ni": "^0.23.1",
"@farmfe/cli": "^1.0.4",
"@farmfe/core": "^1.5.0",
"@rspack/cli": "^1.1.6",
"@rspack/core": "^1.1.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"bumpp": "^9.9.1",
"esbuild": "^0.24.0",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^9.16.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"jiti": "^2.4.1",
"lint-staged": "^15.2.11",
"magic-string": "^0.30.15",
"picocolors": "^1.1.1",
"rolldown": "^0.15.0",
"rollup": "^4.28.1",
"simple-git-hooks": "^2.11.1",
"tsdown": "^0.5.2",
"typescript": "~5.6.3",
"unplugin": "workspace:*",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"pnpm": {
"overrides": {
"typescript": "~5.6.3"
}
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}