-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "vite-svg-sprite-wrapper",
"type": "module",
"version": "1.4.1",
"packageManager": "[email protected]",
"description": "Creating one sprite file on the fly",
"author": "vshepel <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/vshepel/vite-svg-sprite-wrapper",
"repository": {
"type": "git",
"url": "https://github.com/vshepel/vite-svg-sprite-wrapper"
},
"bugs": "https://github.com/vshepel/vite-svg-sprite-wrapper/issues",
"keywords": [
"vite",
"vite-plugin",
"svg",
"svg-sprite"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm --clean",
"dev": "pnpm run build --watch",
"lint": "eslint .",
"prepublishOnly": "pnpm run build",
"release": "bumpp && npm publish"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"fast-glob": "^3.3.2",
"picocolors": "^1.1.1",
"picomatch": "^4.0.2",
"svg-sprite": "^2.0.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@types/node": "^20.17.9",
"@types/picomatch": "^3.0.1",
"@types/svg-sprite": "^0.0.39",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vite": "^6.0.1"
}
}