-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "@cicara/vite-plugin-config",
"version": "0.0.3",
"description": "import yaml config",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "tsup --watch src",
"example:dev": "pnpm -C example run dev",
"example:build": "pnpm run build && pnpm -C example run build",
"build": "tsup"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"types",
"*.d.ts"
],
"peerDependencies": {
"vite": "^2.6.0 || ^3.0.0 || ^4.0.0"
},
"dependencies": {
"@rollup/pluginutils": "5.0.2",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/node": "^20.3.0",
"tsup": "6.5.0",
"typescript": "5.1.3",
"vite": "4.0.3"
},
"directories": {
"example": "example"
},
"author": "hungtcs <[email protected]> (https://github.com/hungtcs)",
"keywords": [
"vite"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cicara/vite-plugin-config.git"
},
"bugs": {
"url": "https://github.com/cicara/vite-plugin-config/issues"
},
"homepage": "https://github.com/cicara/vite-plugin-config#readme"
}