-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.45 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.45 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "tiny-isprite",
"version": "2.0.1",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/Icon.js",
"types": "./dist/Icon.d.ts",
"exports": {
".": {
"import": "./dist/Icon.js",
"require": "./dist/index.js"
}
},
"sideEffects": false,
"bin": {
"build-sprite": "./bin/build-sprite.js"
},
"files": [
"dist",
"bin",
"core",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup src/Icon.tsx --format esm,cjs --dts --external react && cp src/wrapper/index.js dist/index.js",
"build:sprite": "node ./bin/generate-sprite.js"
},
"keywords": [
"svg",
"sprite",
"icon",
"icons",
"react",
"component",
"svg-sprite",
"icon-library",
"cli-tool",
"vite",
"nextjs",
"turbopack",
"tailwind",
"css-variables",
"currentColor",
"optimizer",
"minify",
"frontend",
"design-system"
],
"author": "Dina",
"license": "MIT",
"description": "Lightweight React component for using SVG sprites with Next.js, Vite and Turbopack.",
"devDependencies": {
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "^17 || ^18 || ^19"
},
"dependencies": {
"commander": "^13.1.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/username/tiny-isprite"
}
}