-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.41 KB
/
package.json
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
{
"name": "@thanka-digital/beej",
"version": "0.0.6",
"description": "Starter template for web frontend projects with React, Next.js, TailwindCSS, ChakraUI, Mantine, Redux, Jotai, and many other foundational libraries already configured.",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "unbuild --stub && set NODE_ENV=development && node index.js",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"main": "index.js",
"files": [
"dist",
"templates",
"index.js"
],
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"bin": {
"beej": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thanka-Digital/beej.git"
},
"bugs": {
"url": "https://github.com/Thanka-Digital/beej/issues"
},
"homepage": "https://github.com/Thanka-Digital/beej#readme",
"keywords": [
"starter",
"template",
"tailwind",
"chakra",
"mantine",
"redux",
"jotai",
"ui",
"react",
"next"
],
"author": "alsongarbuja",
"license": "MIT",
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^22.8.1",
"@types/prompts": "^2.4.9",
"minimist": "^1.2.8",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"typescript": "^5.6.3",
"unbuild": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}