forked from kim-elijah-sol/react-smooth-number-counter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "@reactify-components/smooth-number-counter",
"version": "0.0.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/innei/react-smooth-number-counter"
},
"license": "MIT",
"author": {
"name": "kim elijah sol & Innei",
"url": "https://github.com/innei"
},
"peerDependencies": {
"react": ">=17 || >=18 || >=16"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsup src/index.ts --dts --target es2020 --format cjs,esm --external react,react-dom --sourcemap"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"react",
"smooth",
"number",
"counter",
"component",
"kimchi"
],
"devDependencies": {
"@innei/eslint-config-react-ts": "^0.9.8",
"@innei/prettier": "^0.9.8",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^6.7.0"
}
}