@adula/create-app 0.2.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@adula/create-app",
3
+ "version": "0.2.0-alpha.1",
4
+ "description": "Create a complete AdonisJS business application with adula",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "engines": {
8
+ "node": ">=24.0.0"
9
+ },
10
+ "bin": {
11
+ "create-adula": "build/cli.mjs"
12
+ },
13
+ "files": [
14
+ "build"
15
+ ],
16
+ "dependencies": {
17
+ "pg": "8.16.3",
18
+ "pnpm": "11.19.0"
19
+ },
20
+ "devDependencies": {
21
+ "@types/node": "26.2.0",
22
+ "@types/pg": "8.15.5",
23
+ "typescript": "6.0.3",
24
+ "eslint": "10.9.0"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/adulash/adula-kit.git",
29
+ "directory": "packages/create-app"
30
+ },
31
+ "homepage": "https://github.com/adulash/adula-kit/tree/main/packages/create-app#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/adulash/adula-kit/issues"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public",
37
+ "provenance": true
38
+ },
39
+ "scripts": {
40
+ "build": "node build.mjs",
41
+ "test": "node --test tests/*.test.mjs",
42
+ "typecheck": "tsc --noEmit",
43
+ "lint": "eslint src build.mjs tests"
44
+ }
45
+ }