-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "@0xtotaylor/bytescout-nextjs",
"version": "1.0.5",
"description": "ByteScout SDK for Next.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"nextjs",
"sdk",
"api",
"bytescout"
],
"author": "ByteScout",
"license": "MIT",
"peerDependencies": {
"next": ">=13.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/next": "^9.0.0",
"@types/node": "^22.5.5",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"typescript": "^5.6.2"
},
"dependencies": {
"cheerio": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/0xtotaylor/bytescout-nextjs.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bugs": {
"url": "https://github.com/0xtotaylor/bytescout-nextjs/issues"
},
"homepage": "https://github.com/0xtotaylor/bytescout-nextjs#readme"
}