forked from sanalabs/auto-text-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "@oldnox/auto-text-size",
"description": "Make text fit container, prevent overflow and underflow.",
"version": "0.2.3",
"license": "MIT",
"homepage": "https://github.com/sanalabs/auto-text-size#readme",
"repository": {
"type": "git",
"url": "https://github.com/sanalabs/auto-text-size.git"
},
"author": "Viktor Qvarfordt",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"files": [
"src/**/*",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"scripts": {
"clean": "rm -rf dist",
"build": "tsc & tsc --project tsconfig.cjs.json",
"watch": "tsc-watch --onSuccess \"yalc push\""
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"tsc-watch": "^5.0.3",
"typescript": "4.7.4"
},
"packageManager": "[email protected]"
}