-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1021 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@socketsupply/next-native",
"version": "0.0.1",
"description": "Run Next.js Applications on the Socket Runtime",
"main": "src/index.js",
"type": "module",
"bin": {
"next-native": "bin/index.js"
},
"scripts": {
"test": "npm run lint && ssc build -r -o test/",
"lint": "standard src"
},
"keywords": [
"next",
"nextjs",
"native",
"socket",
"runtime",
"web",
"application"
],
"authors": [
{
"name": "Joseph Werle",
"email": "[email protected]"
},
{
"name": "Paolo Fragomeni",
"email": "[email protected]"
}
],
"license": "MIT",
"peerDependencies": {
"@socketsupply/socket": "*",
"next": "^14.1.4"
},
"exports": {
".": {
"default": "./src/index.js"
},
"./server": {
"default": "./src/server.js"
},
"./components": {
"default": "./src/components.js"
}
},
"devDependencies": {
"standard": "^17.1.0",
"@types/node": "^20.12.5"
}
}