-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.85 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
78
79
80
81
82
83
84
{
"name": "@pify/search",
"version": "0.4.4",
"description": "Fuzzy file finding and indexed content search for pi: a Rust trigram index that survives compaction, with a zero-dependency TypeScript fallback",
"keywords": [
"pi-package",
"pi-extension",
"pi",
"pify",
"search",
"grep",
"fuzzy",
"trigram"
],
"homepage": "https://github.com/pifydev/search#readme",
"bugs": {
"url": "https://github.com/pifydev/search/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pifydev/search.git"
},
"license": "MIT",
"author": "Pify maintainers",
"type": "module",
"engines": {
"node": ">=22.19.0"
},
"files": [
"extensions",
"src",
"skills",
"native/src",
"native/Cargo.toml",
"native/build.rs",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./extensions/search.ts"
],
"skills": [
"./skills"
]
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "npm run typecheck && npm test",
"build:native": "cargo build --release --manifest-path native/Cargo.toml"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"typebox": {
"optional": true
}
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.85.1",
"@earendil-works/pi-coding-agent": "^0.85.1",
"@earendil-works/pi-tui": "^0.85.1",
"@types/node": "^22.10.2",
"typebox": "^1.1.38",
"typescript": "^5.7.2"
},
"publishConfig": {
"access": "public"
}
}