-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
88 lines (88 loc) · 1.98 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
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
79
80
81
82
83
84
85
86
87
88
{
"name": "@frames.js/render",
"version": "0.0.2",
"type": "module",
"main": "./dist/index.cjs",
"types": "index.d.cts",
"typesVersions": {
"*": {
"*": [
"dist/*",
"dist/*/index.d.ts"
]
}
},
"scripts": {
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"build": "NODE_OPTIONS='--max-old-space-size=16384' tsup",
"dev": "npm run build -- --watch",
"test:watch": "jest --watch",
"check:package-types": "attw --pack .",
"check:package-lint": "publint --strict"
},
"repository": {
"type": "git",
"url": "https://github.com/framesjs/frames.js/tree/main/packages/frames.js"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./next": {
"import": {
"types": "./dist/next/index.d.ts",
"default": "./dist/next/index.js"
},
"require": {
"types": "./dist/next/index.d.cts",
"default": "./dist/next/index.cjs"
}
},
"./farcaster": {
"import": {
"types": "./dist/farcaster/index.d.ts",
"default": "./dist/farcaster/index.js"
},
"require": {
"types": "./dist/farcaster/index.d.cts",
"default": "./dist/farcaster/index.cjs"
}
},
"./use-frame": {
"import": {
"types": "./dist/use-frame.d.ts",
"default": "./dist/use-frame.js"
},
"require": {
"types": "./dist/use-frame.d.cts",
"default": "./dist/use-frame.cjs"
}
}
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@remix-run/node": "^2.8.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"license": "MIT",
"peerDependencies": {
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@farcaster/core": "^0.14.7",
"frames.js": "^0.11.0"
}
}