-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 960 Bytes
/
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
{
"name": "vite-yaml-plugin",
"version": "1.2.1",
"description": "Vite plugin to import YAML files",
"author": "silverwind <me@silverwind.io>",
"repository": "silverwind/vite-yaml-plugin",
"license": "BSD-2-Clause",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./types": "./types.d.ts"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"types.d.ts"
],
"dependencies": {
"js-yaml": "4.1.0"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "22.10.7",
"eslint": "8.57.0",
"eslint-config-silverwind": "97.0.0",
"eslint-config-silverwind-typescript": "9.2.2",
"typescript": "5.7.3",
"typescript-config-silverwind": "6.2.1",
"updates": "16.4.1",
"versions": "12.1.2",
"vite": "6.0.7",
"vite-config-silverwind": "3.2.0",
"vitest": "2.1.8",
"vitest-config-silverwind": "9.2.1"
}
}