-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.13 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
87
88
89
90
91
92
93
94
{
"name": "astroadmin",
"version": "1.4.6",
"description": "The git-native CMS for Astro \u2014 auto-generates an editing UI from your content collection Zod schemas; publish = git push",
"type": "module",
"main": "server/index.js",
"exports": {
".": "./server/index.js",
"./integration": "./integration/index.js",
"./loader": "./loader/index.js"
},
"bin": {
"astroadmin": "./bin/cli.js"
},
"scripts": {
"dev": "NODE_ENV=development bun --watch bin/cli.js dev",
"prod": "NODE_ENV=production bun bin/cli.js dev",
"start": "bun bin/cli.js dev",
"build:css": "tailwindcss -i ./ui/input.css -o ./ui/styles.css --minify",
"watch:css": "tailwindcss -i ./ui/input.css -o ./ui/styles.css --watch",
"test": "bun tests/api.test.js",
"test:watch": "bun --watch tests/api.test.js",
"test:unit": "rm -rf /tmp/aa-unit-cs /tmp/aa-unit-loader /tmp/aa-unit-pub; mkdir -p /tmp/aa-unit-cs /tmp/aa-unit-loader /tmp/aa-unit-pub; ASTROADMIN_PROJECT_ROOT=/tmp/aa-unit-cs ASTROADMIN_DB=/tmp/aa-unit-cs/content.db bun tests/content-store.test.js && ASTROADMIN_PROJECT_ROOT=/tmp/aa-unit-loader ASTROADMIN_DB=/tmp/aa-unit-loader/content.db bun tests/loader.test.js && bun tests/schema-parser-db.test.js && bun tests/form-generator.test.js && bun tests/preview-routes.test.js && bun tests/markdown-transforms.test.js && bun tests/markdown-body-not-named.test.js && bun tests/focus-editor-field.test.js && bun tests/deploy.test.js && bun tests/import-files.test.js && bun tests/publish-message.test.js && bun tests/git-api.test.js && ASTROADMIN_PROJECT_ROOT=/tmp/aa-unit-pub ASTROADMIN_DB=/tmp/aa-unit-pub/content.db bun tests/publish-api.test.js",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed"
},
"keywords": [
"astro",
"cms",
"content-collections",
"admin",
"zod",
"headless-cms",
"git-based-cms",
"markdown"
],
"author": "James Pickard",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cloudshipco/astroadmin.git"
},
"homepage": "https://astroadmin.dev",
"dependencies": {
"alpinejs": "^3.15.2",
"chokidar": "^4.0.3",
"commander": "^12.1.0",
"cors": "^2.8.5",
"esbuild": "^0.24.0",
"express": "^4.21.2",
"express-rate-limit": "^7.4.1",
"express-session": "^1.18.1",
"gray-matter": "^4.0.3",
"multer": "^2.0.2",
"simple-git": "^3.27.0",
"ws": "^8.18.0",
"zod-to-json-schema": "^3.24.0",
"@babel/parser": "^7.26.0"
},
"peerDependencies": {
"astro": ">=6.0.0",
"zod": ">=3.20.0"
},
"peerDependenciesMeta": {
"astro": {
"optional": false
},
"zod": {
"optional": false
}
},
"engines": {
"bun": ">=1.0.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tailwindcss/cli": "^4.1.17",
"autoprefixer": "^10.4.22",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17"
},
"files": [
"bin/",
"server/",
"ui/",
"loader/index.js",
"loader/open-db.js",
"integration/index.js",
"integration/preview-route.astro",
"README.md",
"LICENSE"
]
}