-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 933 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 933 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
41
42
43
44
45
46
47
48
{
"name": "pi-no-soft-cursor",
"version": "1.0.1",
"description": "Remove the editor's reverse-video soft cursor · from yapp",
"author": "mgabor3141",
"license": "MIT",
"repository": {
"url": "git+https://github.com/mgabor3141/yapp.git",
"directory": "packages/no-soft-cursor"
},
"keywords": [
"pi-package",
"pi-extension",
"yapp"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup"
},
"pi": {
"extensions": [
"dist/index.js"
]
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.63.0",
"@mariozechner/pi-tui": "^0.63.0",
"@types/node": "^25.3.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}