-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 850 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 850 Bytes
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
{
"name": "@open-frames/types",
"version": "0.1.1",
"description": "Shared types for OpenFrames implementations",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run types",
"types": "tsc",
"test": "vitest run ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-frames/types.git"
},
"keywords": [
"OpenFrames",
"farcaster",
"open-frames",
"frames",
"types"
],
"files": [
"dist"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-frames/types/issues"
},
"homepage": "https://github.com/open-frames/types#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
}
}