This repository has been archived by the owner on Jul 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "@honkhonk/vite-plugin-svgr",
"version": "1.1.0",
"description": "Vite plugin to transform SVGs into React components using svgr under the hood.",
"author": "Luc Heinrich",
"homepage": "https://github.com/lucsky/vite-plugin-svgr#readme",
"repository": "https://github.com/lucsky/vite-plugin-svgr",
"bugs": "https://github.com/lucsky/vite-plugin-svgr/issues",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts",
"client.d.ts"
],
"keywords": [
"vite",
"svgr",
"plugin"
],
"dependencies": {
"@svgr/core": "^5.5.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.6.2",
"@types/react": "^17.0.19",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5",
"vite": "^2.5.0"
},
"peerDependencies": {
"vite": "^2.5.0"
},
"scripts": {
"dev": "tsc --watch",
"test": "jest",
"build": "tsc",
"clean": "rm -rf dist",
"prebuild": "yarn run clean",
"prepublish": "yarn run build"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"proseWrap": "preserve"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}