-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"author": "Alex Kahn",
"bin": {
"create-absolutejs": "dist/index.js"
},
"dependencies": {
"@absolutejs/auth": "0.22.0",
"@clack/prompts": "1.0.0",
"picocolors": "1.1.1"
},
"description": "A CLI tool to create a new AbsoluteJS project",
"devDependencies": {
"@absolutejs/absolute": "0.19.0-beta.948",
"@eslint/compat": "2.0.2",
"@stylistic/eslint-plugin": "5.9.0",
"@types/bun": "1.3.8",
"@types/react": "19.2.13",
"autoprefixer": "10.4.24",
"drizzle-kit": "0.31.8",
"drizzle-orm": "0.45.1",
"eslint": "10.0.1",
"eslint-plugin-absolute": "0.2.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-security": "4.0.0",
"prettier": "3.8.1",
"prettier-plugin-svelte": "3.4.1",
"svelte": "5.49.2",
"tailwindcss": "4.1.18",
"typescript-eslint": "8.56.0",
"vue": "3.5.27"
},
"files": [
"dist",
"dist/templates"
],
"license": "BSL-1.1",
"main": "dist/index.js",
"name": "create-absolutejs",
"peerDependencies": {
"typescript": "5.9.3"
},
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json && cp -R src/templates dist/templates",
"check-versions": "bun scripts/check-versions.ts",
"dev": "bun scripts/dev.ts",
"format": "absolute prettier --write",
"lint": "absolute eslint --ignore-pattern 'absolutejs-project/**'",
"release": "bun run format && bun run build && bun publish",
"test": "cd absolutejs-project && bun dev",
"typecheck": "bun run tsc --noEmit"
},
"type": "module",
"version": "0.13.0"
}