forked from unjs/unplugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
{
"name": "unplugin",
"version": "0.6.2",
"description": "Unified plugin system for build tools",
"repository": "unjs/unplugin",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./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 --ext ts .",
"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": "nr build && jiti scripts/buildFixtures.ts"
},
"dependencies": {
"chokidar": "^3.5.3",
"webpack-sources": "^3.2.3",
"webpack-virtual-modules": "^0.4.3"
},
"devDependencies": {
"@ampproject/remapping": "^2.1.2",
"@antfu/ni": "^0.14.0",
"@nuxtjs/eslint-config-typescript": "^9.0.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.24",
"@types/webpack-sources": "^3.2.0",
"bumpp": "^7.1.1",
"conventional-changelog-cli": "^2.2.2",
"enhanced-resolve": "^5.9.3",
"esbuild": "^0.14.36",
"eslint": "^8.13.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.0.1",
"jiti": "^1.13.0",
"magic-string": "^0.26.1",
"rollup": "^2.70.1",
"tsup": "^5.12.5",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vitest": "^0.9.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"esbuild": ">=0.13",
"rollup": "^2.50.0",
"vite": "^2.3.0",
"webpack": "4 || 5"
},
"peerDependenciesMeta": {
"esbuild": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
},
"webpack": {
"optional": true
}
}
}