-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
121 lines (121 loc) · 2.69 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "unplugin-formkit",
"type": "module",
"version": "0.3.0",
"packageManager": "[email protected]",
"description": "Automatic FormKit configuration 🪄",
"license": "MIT",
"homepage": "https://github.com/formkit/unplugin-formkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/formkit/unplugin-formkit.git"
},
"bugs": {
"url": "https://github.com/formkit/unplugin-formkit/issues"
},
"keywords": [
"formkit",
"unplugin",
"vite",
"webpack",
"rollup",
"esbuild",
"transform"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./vite": {
"types": "./dist/vite.d.ts",
"import": "./dist/vite.js",
"require": "./dist/vite.cjs"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"import": "./dist/webpack.js",
"require": "./dist/webpack.cjs"
},
"./rollup": {
"types": "./dist/rollup.d.ts",
"import": "./dist/rollup.js",
"require": "./dist/rollup.cjs"
},
"./esbuild": {
"types": "./dist/esbuild.d.ts",
"import": "./dist/esbuild.js",
"require": "./dist/esbuild.cjs"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.cjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch src",
"build:fix": "esno scripts/postbuild.ts",
"lint": "eslint .",
"play": "npm -C playground run dev",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
},
"esbuild": {
"optional": true
}
},
"dependencies": {
"pathe": "^1.1.1",
"unplugin": "^1.4.0"
},
"devDependencies": {
"@types/node": "^20.5.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-vue": "^4.2.3",
"bumpp": "^9.2.0",
"chalk": "^5.3.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"esno": "^0.17.0",
"fast-glob": "^3.3.1",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.2",
"webpack": "^5.88.2"
}
}