-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"private": "true",
"name": "shared-library",
"version": "1.0.2",
"description": "",
"license": "MIT",
"author": "Fotis Papadogeorgopoulos <[email protected]> (https://fotis.xyz)",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./package.json": "./package.json"
},
"module": "./dist/esm/index.js",
"files": [
"dist",
"!dist/**/*.tsbuildinfo"
],
"scripts": {
"build": "tsx generate-icon-modules.mts && tshy && cp src/icons/*.svg dist/esm/icons"
},
"dependencies": {
"@svg-use/core": "workspace:^0.4.0",
"@svg-use/react": "workspace:^0.4.3"
},
"peerDependencies": {
"react": "^18"
},
"devDependencies": {
"@types/node": "22.12.0",
"@types/react": "18.3.3",
"change-case": "5.4.4",
"globby": "14.0.2",
"tsx": "4.17.0"
},
"keywords": [],
"tshy": {
"dialects": [
"esm"
],
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
}
}
}