-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 KB
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
{
"name": "@ridemountainpig/svgl-react",
"version": "1.0.15",
"description": "Implementation of the Svgl for React applications.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "bunchee",
"dev": "bunchee --watch",
"format": "prettier --write .",
"fetch": "bun scripts/fetch-svgs.ts",
"generate": "bun scripts/generate-exports.ts"
},
"keywords": [
"svgl",
"react",
"svg",
"icons",
"components",
"library"
],
"author": "ridemountainpig",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ridemountainpig/svgl-react.git"
},
"bugs": {
"url": "https://github.com/ridemountainpig/svgl-react/issues"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0"
},
"devDependencies": {
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"bunchee": "^6.6.2",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}