A CLI for scaffolding ATProto web applications
1{
2 "name": "@nulfrost/create-atproto-app",
3 "version": "0.2.1",
4 "description": "CLI to bootstrap ATProto projects",
5 "keywords": [
6 "atproto",
7 "bluesky",
8 "cli"
9 ],
10 "homepage": "https://tangled.org/did:plc:qttsv4e7pu2jl3ilanfgc3zn/create-atproto-app#readme",
11 "bugs": {
12 "url": "https://tangled.org/did:plc:qttsv4e7pu2jl3ilanfgc3zn/create-atproto-app/issues"
13 },
14 "license": "MIT",
15 "author": "Dane MIller <me@dane.computer>",
16 "repository": {
17 "type": "git",
18 "url": "git+https://tangled.org/did:plc:qttsv4e7pu2jl3ilanfgc3zn/create-atproto-app"
19 },
20 "bin": {
21 "create-atproto-app": "index.js"
22 },
23 "files": [
24 "index.js",
25 "templates",
26 "dist"
27 ],
28 "type": "module",
29 "main": "index.js",
30 "publishConfig": {
31 "access": "public"
32 },
33 "scripts": {
34 "dev": "tsdown --watch",
35 "build": "tsdown",
36 "fmt": "oxfmt",
37 "start": "node dist/index.js",
38 "check": "tsc",
39 "test": "vitest run",
40 "changeset": "changeset",
41 "prepublishOnly": "pnpm build"
42 },
43 "dependencies": {
44 "create-vite": "^8.3.0"
45 },
46 "devDependencies": {
47 "@changesets/cli": "^2.29.8",
48 "@clack/prompts": "^1.0.1",
49 "@types/node": "^22.0.0",
50 "citty": "^0.2.1",
51 "execa": "^9.6.1",
52 "lefthook": "^2.1.1",
53 "oxfmt": "^0.32.0",
54 "picocolors": "^1.1.1",
55 "tsdown": "^0.20.3",
56 "tsx": "^4.19.0",
57 "typescript": "^5.6.0",
58 "vitest": "^4.0.18"
59 },
60 "engines": {
61 "node": "^20.19.0 || >=22.12.0"
62 },
63 "packageManager": "pnpm@10.29.3"
64}