-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.16 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
85
86
{
"name": "@aliou/pi-synthetic",
"version": "0.21.0",
"license": "MIT",
"type": "module",
"private": false,
"keywords": [
"pi-package",
"pi-extension",
"pi"
],
"repository": {
"type": "git",
"url": "https://github.com/aliou/pi-synthetic"
},
"pi": {
"extensions": [
"./src/extensions/provider/index.ts",
"./src/extensions/web-search/index.ts",
"./src/extensions/command-quotas/index.ts",
"./src/extensions/sub-bar-integration/index.ts",
"./src/extensions/quota-warnings/index.ts",
"./src/extensions/usage-status/index.ts"
],
"video": "https://assets.aliou.me/github/aliou/pi-synthetic/demo.mp4"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"README.md",
"!src/**/*.test.ts"
],
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "biome check",
"format": "biome check --write",
"test": "vitest run",
"test:watch": "vitest",
"check:lockfile": "pnpm install --frozen-lockfile --ignore-scripts",
"prepare": "[ -d .git ] && husky || true",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm changeset publish"
},
"dependencies": {
"@aliou/pi-utils-settings": "^0.15.0",
"@aliou/pi-utils-ui": "^0.4.0"
},
"devDependencies": {
"@aliou/biome-plugins": "^0.8.1",
"@biomejs/biome": "^2.4.15",
"@changesets/cli": "^2.27.11",
"@earendil-works/pi-coding-agent": "0.77.0",
"typebox": "^1.1.37",
"@types/node": "^25.0.10",
"husky": "^9.1.7",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"@earendil-works/pi-tui": "0.77.0"
},
"pnpm": {
"overrides": {
"@earendil-works/pi-ai": "$@earendil-works/pi-coding-agent",
"@earendil-works/pi-tui": "$@earendil-works/pi-coding-agent"
}
},
"peerDependenciesMeta": {
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"typebox": {
"optional": true
}
},
"packageManager": "pnpm@10.26.1"
}