-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.07 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
{
"name": "vite-plugin-svg-sfc",
"version": "2.0.1",
"description": "Convert SVGs to Vue single file component(SFC), support <style> tag",
"author": "Kaciras <Kaciras@outlook.com>",
"license": "MIT",
"repository": {
"url": "https://github.com/Kaciras/vite-plugin-svg-sfc"
},
"keywords": [
"vite-plugin",
"rollup-plugin",
"vue",
"svg"
],
"type": "module",
"exports": {
"./client": {
"types": "./client.d.ts"
},
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"files": [
"index.d.ts",
"index.js",
"client.d.ts"
],
"scripts": {
"compile": "tsc --project tsconfig.lib.json",
"test": "vitest run"
},
"dependencies": {
"svgo": "^3.3.2"
},
"devDependencies": {
"@kaciras/eslint-config-core": "^3.2.1",
"@kaciras/eslint-config-typescript": "^3.2.1",
"@kaciras/eslint-config-vue": "^3.2.1",
"@types/node": "^22.13.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.20.0",
"rollup": "^4.34.6",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5",
"vue": "^3.5.13"
}
}