-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.8 KB
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
{
"name": "@framers/agentos-ext-omdb",
"version": "1.0.0",
"description": "OMDB movie and TV show search and details tool for AgentOS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./manifest.json": "./manifest.json",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist"
},
"keywords": [
"agentos",
"extension",
"omdb",
"movie",
"media",
"imdb"
],
"author": {
"name": "Framers AI",
"email": "team@frame.dev",
"url": "https://frame.dev"
},
"contributors": [
{
"name": "Johnny Dunn",
"email": "johnnyfived@protonmail.com",
"url": "https://github.com/jddunn"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/framerslab/agentos-extensions.git",
"directory": "registry/curated/media/omdb"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@framers/agentos": "^0.10.11"
},
"devDependencies": {
"@framers/agentos": "workspace:^",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^1.6.0",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"homepage": "https://github.com/framerslab/agentos-extensions/tree/master/registry/curated/media/omdb#readme",
"bugs": {
"url": "https://github.com/framerslab/agentos-extensions/issues"
},
"files": [
"dist",
"manifest.json"
]
}