-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.11 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.11 KB
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
73
74
75
76
77
78
{
"name": "@waitinglist/react",
"version": "1.2.3",
"description": "React components for waitinglist.dev integration",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"style": "dist/style.css",
"private": false,
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"dev": "vite build --watch",
"prepare": "bun run build",
"lint": "eslint src",
"type-check": "tsc --noEmit",
"preview": "vite preview",
"examples": "cd examples && bun install && bun run dev",
"examples:build": "cd examples && bun run build",
"test": "bun run type-check && bun run lint",
"clean": "rm -rf dist",
"prebuild": "bun run clean",
"prerelease": "bun run test && bun run build",
"release": "npm publish --access public",
"release:dry": "npm publish --dry-run --access public",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"keywords": [
"waitinglist",
"react",
"component",
"form",
"email-collection",
"lead-generation",
"phone-input",
"typescript"
],
"author": "waitinglist.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/waitinglist-dev/waitinglist-react.git"
},
"homepage": "https://waitinglist.dev",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"axios": "^1.6.2",
"react-imask": "^7.6.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.40.0",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.0"
}
}