create-absolutejs 0.0.7 → 0.1.0

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.
Files changed (2) hide show
  1. package/dist/index.js +1444 -197
  2. package/package.json +15 -9
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-absolutejs",
3
3
  "description": "A CLI tool to create a new AbsoluteJS project",
4
- "version": "0.0.7",
4
+ "version": "0.1.0",
5
5
  "license": "CC BY-NC 4.0",
6
6
  "author": "Alex Kahn",
7
7
  "type": "module",
@@ -13,24 +13,30 @@
13
13
  "dist"
14
14
  ],
15
15
  "scripts": {
16
- "build": "rm -rf dist && bun build index.ts --outdir dist --target=bun && tsc --emitDeclarationOnly --project tsconfig.json",
17
- "test": "echo \"Error: no test specified\" && exit 1",
18
- "format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,json}\"",
19
- "dev": "bun run index.ts",
16
+ "build": "rm -rf dist && bun build src/index.ts --target node --outdir dist && tsc --emitDeclarationOnly --project tsconfig.json",
17
+ "test": "cd absolutejs-project && bun dev",
18
+ "format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,json,mjs,md}\"",
19
+ "dev": "rm -rf absolutejs-project && bun run src/index.ts",
20
20
  "lint": "eslint ./",
21
21
  "typecheck": "bun run tsc --noEmit",
22
22
  "release": "bun run format && bun run build && bun publish"
23
23
  },
24
24
  "devDependencies": {
25
+ "@absolutejs/auth": "0.8.0",
26
+ "@stylistic/eslint-plugin-ts": "4.2.0",
25
27
  "@types/bun": "latest",
26
- "prettier": "3.5.3",
28
+ "@types/react": "19.1.4",
29
+ "autoprefixer": "10.4.21",
30
+ "drizzle-kit": "0.31.1",
31
+ "drizzle-orm": "0.41.0",
27
32
  "eslint": "9.26.0",
28
33
  "eslint-plugin-absolute": "0.0.3",
29
- "@stylistic/eslint-plugin-ts": "4.2.0",
30
- "typescript-eslint": "8.32.0",
31
34
  "eslint-plugin-import": "2.31.0",
32
35
  "eslint-plugin-promise": "7.2.1",
33
- "eslint-plugin-security": "3.0.1"
36
+ "eslint-plugin-security": "3.0.1",
37
+ "prettier": "3.5.3",
38
+ "tailwindcss": "4.1.7",
39
+ "typescript-eslint": "8.32.0"
34
40
  },
35
41
  "peerDependencies": {
36
42
  "typescript": "^5"