-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.42 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
63
64
65
66
67
68
69
70
71
72
{
"name": "react-fitter",
"version": "0.1.8",
"author": "Malcolm Nihlén <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"text",
"font size",
"auto size",
"fitter",
"fit",
"resize",
"responsive"
],
"repository": {
"type": "git",
"url": "[email protected]:scriptcoded/react-fitter.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scriptcoded"
}
],
"type": "module",
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"dev": "vite",
"build": "tsup",
"lint": "biome check",
"preview": "vite preview",
"gen:docs": "node generate-docs.js"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.7.8",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"esbuild-plugin-file-path-extensions": "^2.1.3",
"globals": "^15.11.0",
"react": "^18.3.1",
"react-docgen": "^7.1.0",
"react-dom": "^18.3.1",
"rollup-plugin-typescript2": "^0.36.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vite": "^5.4.9"
},
"peerDependencies": {
"react": "^18"
}
}