-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
{
"name": "vite-plugin-svelte-svg-loader",
"type": "module",
"version": "1.0.1",
"packageManager": "[email protected]",
"description": "vite 3.x plugin to load SVG files as Svelte Components",
"author": "lj <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/fEyebrow/vite-plugin-svelte-svg-loader#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fEyebrow/vite-plugin-svelte-svg-loader.git"
},
"bugs": "https://github.com/fEyebrow/vite-plugin-svelte-svg-loader/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && unbuild",
"dev": "unbuild --stub",
"play": "vite playground",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^0.24.3",
"@antfu/ni": "0.18.5",
"@antfu/utils": "^0.5.2",
"@types/node": "^17.0.45",
"bumpp": "^7.2.0",
"eslint": "^8.27.0",
"esno": "^0.16.3",
"pnpm": "^7.15.0",
"rimraf": "^3.0.2",
"svelte": "^3.53.1",
"typescript": "^4.8.4",
"unbuild": "0.9.4",
"vite": "3.2.3",
"vitest": "^0.12.10"
},
"dependencies": {
"@types/svgo": "^2.6.4",
"svgo": "^2.8.0"
},
"peerDependencies": {
"svelte": "^3.53.1",
"vite": "^3.2.3"
}
}