-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.55 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
{
"name": "@xquik/paperclip-plugin-xquik",
"version": "0.1.7",
"description": "Paperclip plugin for Twitter search, tweet lookup, profiles, timelines, and X API trends. Not affiliated with X Corp.",
"type": "module",
"license": "MIT",
"author": "Xquik",
"homepage": "https://xquik.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Xquik-dev/paperclip-plugin-xquik.git"
},
"bugs": {
"url": "https://github.com/Xquik-dev/paperclip-plugin-xquik/issues"
},
"keywords": [
"paperclip",
"paperclip-plugin",
"xquik",
"twitter-search",
"twitter-api",
"agent-api"
],
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node ./esbuild.config.mjs",
"check:reproducible": "node ./scripts/check-reproducible.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage --config ./vitest.config.ts",
"check": "pnpm typecheck && pnpm test && pnpm build"
},
"paperclipPlugin": {
"manifest": "./dist/manifest.js",
"worker": "./dist/worker.js"
},
"dependencies": {
"@paperclipai/plugin-sdk": "2026.817.0"
},
"devDependencies": {
"@types/node": "26.2.0",
"@vitest/coverage-v8": "4.1.11",
"esbuild": "0.28.2",
"fast-check": "4.9.0",
"typescript": "7.0.2",
"vite": "8.2.1",
"vitest": "4.1.11"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}