-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.34 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.34 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "unplugin-starter",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@10.11.0",
"description": "",
"license": "MIT",
"homepage": "https://github.com/antfu/unplugin-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/unplugin-starter.git"
},
"bugs": {
"url": "https://github.com/antfu/unplugin-starter/issues"
},
"keywords": [
"unplugin",
"vite",
"webpack",
"rollup",
"transform"
],
"exports": {
".": "./dist/index.js",
"./astro": "./dist/astro.js",
"./esbuild": "./dist/esbuild.js",
"./farm": "./dist/farm.js",
"./nuxt": "./dist/nuxt.js",
"./rollup": "./dist/rollup.js",
"./rspack": "./dist/rspack.js",
"./types": "./dist/types.js",
"./vite": "./dist/vite.js",
"./webpack": "./dist/webpack.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown -w",
"lint": "eslint .",
"play": "npm -C playground run dev",
"prepublishOnly": "npm run build",
"release": "bumpp && pnpm publish",
"start": "tsx src/index.ts",
"test": "vitest"
},
"peerDependencies": {
"@farmfe/core": ">=1",
"@nuxt/kit": "^3",
"@nuxt/schema": "^3",
"esbuild": "*",
"rollup": "^3",
"vite": ">=3",
"webpack": "^4 || ^5"
},
"peerDependenciesMeta": {
"@farmfe/core": {
"optional": true
},
"@nuxt/kit": {
"optional": true
},
"@nuxt/schema": {
"optional": true
},
"esbuild": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
},
"webpack": {
"optional": true
}
},
"dependencies": {
"unplugin": "^2.3.4"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.2",
"@nuxt/kit": "^3.17.4",
"@nuxt/schema": "^3.17.4",
"@types/node": "^22.15.21",
"bumpp": "^10.1.1",
"eslint": "^9.27.0",
"nodemon": "^3.1.10",
"rollup": "^4.41.0",
"tsdown": "^0.12.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.4",
"webpack": "^5.99.9"
}
}