-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.15 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.15 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
{
"name": "shopq",
"version": "0.4.1",
"description": "A zero-dependency Shopify Admin CLI built on Bun",
"type": "module",
"license": "MIT",
"bin": {
"shopq": "dist/shopq.js"
},
"files": [
"dist",
"extensions",
"skills"
],
"scripts": {
"build": "bun build bin/shopq.ts --target=bun --outfile dist/shopq.js && chmod +x dist/shopq.js",
"prepublishOnly": "bun run build",
"test": "bun test",
"check": "bunx --bun biome check --write .",
"ci:check": "bunx --bun biome check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/c99e/shopq.git"
},
"homepage": "https://github.com/c99e/shopq",
"bugs": {
"url": "https://github.com/c99e/shopq/issues"
},
"keywords": [
"shopify",
"cli",
"admin",
"graphql",
"bun",
"pi-package"
],
"pi": {
"extensions": [
"./extensions"
],
"skills": [
"./skills"
]
},
"engines": {
"bun": ">=1.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@types/bun": "latest"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": "*",
"typescript": "^5.9.3"
},
"peerDependenciesMeta": {
"@mariozechner/pi-coding-agent": {
"optional": true
}
}
}