-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.03 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
{
"name": "thatcher",
"version": "1.0.41",
"description": "A config-driven application framework for building data-intensive web apps without code.",
"main": "src/index.js",
"type": "module",
"exports": {
".": "./src/index.js",
"./engine.server": "./src/engine.server.js",
"./lib/*": "./src/lib/*.js",
"./lib/*.js": "./src/lib/*.js",
"./ui/*": "./src/ui/*.js",
"./ui/*.js": "./src/ui/*.js",
"./config/*": "./src/config/*.js",
"./config/*.js": "./src/config/*.js",
"./services/*": "./src/services/*.js",
"./services/*.js": "./src/services/*.js",
"./validation/*": "./src/lib/validation/*.js",
"./adapters/*": "./src/adapters/*.js",
"./plugins/*": "./src/plugins/*.js",
"./package.json": "./package.json"
},
"bin": {
"thatcher": "src/cli.js",
"thatcher-dev": "src/cli.js"
},
"scripts": {
"dev": "bun run src/cli.js dev",
"start": "bun run src/cli.js start",
"test": "node test.js",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"framework",
"cms",
"low-code",
"config-driven",
"crud",
"workflow",
"sdk",
"bun",
"busybase"
],
"author": "lanmower",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"dependencies": {
"arctic": "^3.7.0",
"bcrypt": "^6.0.0",
"busybase": "^1.0.2",
"googleapis": "^173.0.0",
"hyperformula": "^3.2.0",
"js-yaml": "^5.2.1",
"lucia": "^3.2.2",
"nodemailer": "^9.0.1",
"webjsx": "^0.0.73",
"ws": "^8.13.0",
"xstate": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.16.5",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnEntrypoint/thatcher.git"
},
"bugs": {
"url": "https://github.com/AnEntrypoint/thatcher/issues"
},
"homepage": "https://github.com/AnEntrypoint/thatcher#readme",
"files": [
"src/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}