-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
65 lines (65 loc) · 1.43 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
{
"name": "@modyfi/vite-plugin-yaml",
"version": "1.1.0",
"description": "Import YAML files as JS objects 🔌",
"type": "module",
"author": {
"name": "Tony Ketcham",
"email": "[email protected]",
"url": "https://github.com/tonyketcham"
},
"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": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./modules": {
"types": "./modules.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types",
"*.d.ts"
],
"keywords": [
"vite",
"vite-plugin",
"yaml",
"yml",
"modyfi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Modyfi/vite-plugin-yaml.git"
},
"bugs": {
"url": "https://github.com/Modyfi/vite-plugin-yaml/issues"
},
"homepage": "https://github.com/Modyfi/vite-plugin-yaml/tree/main/#readme",
"peerDependencies": {
"vite": "^3.2.7 || ^4.0.5 || ^5.0.5"
},
"dependencies": {
"@rollup/pluginutils": "5.1.0",
"js-yaml": "4.1.0",
"tosource": "2.0.0-alpha.3"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"c8": "8.0.1",
"tsup": "8.0.1",
"typescript": "5.3.3",
"vite": "5.0.10"
}
}