-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 728 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
{
"name": "pi-artifacts",
"version": "0.1.0",
"description": "Pi extension for generating, previewing, validating, and publishing self-contained artifacts.",
"type": "module",
"keywords": [
"pi-package",
"pi",
"artifacts",
"cloudflare",
"geist"
],
"pi": {
"extensions": [
"./src/index.ts"
],
"skills": [
"./skills/artifact-designer"
]
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.mjs"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "latest",
"typebox": "latest"
},
"devDependencies": {
"@types/node": "latest",
"tsx": "latest",
"typescript": "latest",
"wrangler": "^4.103.0"
}
}