-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.99 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
76
77
{
"name": "@jfrz38/opencode-copy-last",
"version": "0.1.1",
"description": "Copy recent agent, user, or user-agent messages from the current OpenCode session.",
"repository": {
"type": "git",
"url": "https://github.com/jfrz38/opencode-copy-last.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"packageManager": "pnpm@11.1.3",
"scripts": {
"clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true })\"",
"build": "pnpm clean && tsc -p tsconfig.build.json",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json",
"arch:check": "clean-arch check ./src",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"package": "pnpm pack",
"pack:dry-run": "pnpm publish --dry-run",
"publish:npm": "pnpm publish --access public",
"prepack": "pnpm build",
"prepublishOnly": "pnpm check",
"prepare": "husky"
},
"keywords": [
"opencode",
"opencode-plugin",
"clipboard",
"copy-last",
"ai"
],
"author": "José F. Ruiz Zamora <jrz899@inlumine.ual.es>",
"license": "MIT",
"homepage": "https://github.com/jfrz38/opencode-copy-last#readme",
"bugs": {
"url": "https://github.com/jfrz38/opencode-copy-last/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"clipboardy": "5.3.1"
},
"devDependencies": {
"@jfrz38/clean-architecture-highlighter-cli": "0.1.0",
"@opencode-ai/plugin": "1.17.9",
"@types/node": "26.0.0",
"eslint": "10.5.0",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"typescript": "6.0.3",
"typescript-eslint": "8.62.0",
"vitest": "4.1.9"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": "eslint --fix"
},
"publishConfig": {
"access": "public"
}
}