forked from legeling/awesome-codex-pet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 828 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
{
"name": "awesome-codex-pet",
"version": "0.1.0",
"description": "A curated gallery of community-made Codex pets with one-command install and generated previews.",
"license": "SEE LICENSE IN LICENSE AND ASSETS-LICENSE.md",
"type": "module",
"bin": {
"awesome-codex-pet": "scripts/install-pet.mjs"
},
"scripts": {
"format": "prettier --write \"**/*.{md,json}\"",
"install:pet": "node scripts/install-pet.mjs",
"lint": "prettier --check \"**/*.{md,json}\"",
"previews": "python3 scripts/generate-pet-previews.py",
"readmes": "node scripts/generate-readmes.mjs",
"validate": "node scripts/validate-pets.mjs --require-generated-assets",
"validate:pr": "node scripts/validate-pets.mjs"
},
"devDependencies": {
"prettier": "^3.5.3"
},
"engines": {
"node": ">=20"
}
}