-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 894 Bytes
/
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
{
"name": "weitlist",
"license": "MIT",
"version": "0.0.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "tsc"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"description": "Web friendly library to integrate waitlists in seconds.",
"dependencies": {
"prettier": "^2.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-streza/weitlist"
},
"keywords": [
"react",
"waitlist",
"users",
"referral",
"email"
],
"author": "Alex Streza",
"bugs": {
"url": "https://github.com/alex-streza/weitlist/issues"
},
"homepage": "https://github.com/alex-streza/weitlist#readme"
}