-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "@jonwasdone/react-otp",
"version": "1.0.5",
"main": "dist/index.js",
"source": "src",
"module": "dist/index.js",
"type": "module",
"scripts": {
"clean": "rm -rf dist && echo 'Done.'",
"dev": "bun index.tsx",
"lint": "eslint --ext .ts,.tsx .",
"build": "rm -rf dist && bun run bun-build.ts && bun run tailwind-build",
"prepublishOnly": "bun run build",
"tailwind-build": "tailwindcss -i ./src/index.css -o ./dist/index.css --minify"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@happy-dom/global-registrator": "^13.3.8",
"@testing-library/react": "^14.2.1",
"@types/bun": "latest",
"@types/react": "^17.0.0",
"autoprefixer": "^10.4.17",
"bun-plugin-dts": "^0.2.1",
"eslint": "latest",
"eslint-config-sheriff": "latest",
"eslint-define-config": "latest",
"postcss": "^8.4.35",
"react": "^16.8.0 || ^17 || ^18",
"tailwindcss": "^3.4.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jonwasdone/react-otp"
},
"license": "MIT",
"author": "Vasjon Done",
"keywords": [
"react",
"otp",
"input",
"form",
"component",
"password",
"code"
]
}