-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
169 lines (169 loc) · 4.2 KB
/
Copy pathpackage.json
File metadata and controls
169 lines (169 loc) · 4.2 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "@recursivezero/abcd",
"version": "3.4.0",
"description": "A website for kids whio want to learn the alphabet in a fun and interactive way. It is built using Astro and TypeScript.",
"homepage": "https://abcdkbd.com",
"displayName": "abcd",
"license": "MIT",
"publisher": "recursivezero",
"private": true,
"type": "module",
"author": {
"name": "Recursive Zero",
"email": "recursivezero@outlook.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recursivezero/abcd.git"
},
"bugs": {
"url": "https://github.com/recursivezero/abcd/issues",
"email": "recursivezero@outlook.com"
},
"funding": {
"type": "individual",
"url": "https://github.com/xkeshav"
},
"contributors": [
{
"name": "Aditya Kumar Singh",
"email": "adityakumarsingh710@gmail.com",
"github": "adityasingh-7",
"role": "UI Engineer"
},
{
"name": "Ayush Tyagi",
"email": "aytyagi.btech2023@iujaipur.edu.in",
"github": "ayu-ty",
"role": "UI Engineer"
},
{
"name": "Azmat Raza",
"email": "12613120az@gmail.com",
"github": "azmat01",
"role": "UI Engineer"
},
{
"name": "Chhavi Sharma",
"email": "sharmachhavi519@gmail.com",
"github": "chhaviS04",
"role": "UI Engineer"
},
{
"name": "Harsh Saini",
"email": "harsh.btech2022@iujaipur.edu.in",
"github": "harsh01234s",
"role": "UX Engineer"
},
{
"name": "Keshav Mohta",
"email": "xkeshav@gmail.com",
"github": "xkeshav",
"role": "Founder"
},
{
"name": "Prakash Raj",
"email": "1046prt@gmail.com",
"github": "1046prt",
"role": "UI Engineer"
},
{
"name": "Rupesh Rathore",
"email": "rupesh010903@gmail.com",
"github": "rupesh-rathore",
"role": "UI Engineer"
},
{
"name": "Suresh Chelani",
"email": "sureshc.btech2022@iujaipur.edu.in",
"github": "suresh-chelani",
"role": "UI Engineer"
},
{
"name": "Vamil Porwal",
"email": "vamililporwal@gmail.com",
"github": "vamilP",
"role": "UI Engineer"
},
{
"name": "Vansh Raj",
"email": "ciphrox@gmail.com",
"github": "ciphrox",
"role": "UI Engineer"
},
{
"name": "Md Shahid Jamal",
"email": "shahidjamal5701@gmail.com",
"github": "ShahidJamal1",
"role": "UI Engineer"
}
],
"keywords": [
"recursivezero",
"abcd",
"abcdkbd",
"kids",
"education",
"learning",
"fun",
"interactive",
"website",
"astro",
"hindi",
"indian",
"culture",
"typescript"
],
"scripts": {
"dev": "astro dev",
"start": "cross-env NODE_ENV=production astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"lint": "prettier -w --cache . && prettier -w --cache **/*.astro",
"clean": "rm -rf dist build .astro node_modules/.vite .vitepress",
"rebuild": "npm run clean && astro build",
"nuke": "shx rm -rf node_modules && rm package-lock.json && npm run clean",
"setup:hooks": "sh ./setup-hooks.sh"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/mdx": "4.0.3",
"@astrojs/node": "9.1.2",
"@astrojs/partytown": "2.1.4",
"@astrojs/sitemap": "3.4.1",
"@builder.io/partytown": "0.10.3",
"@fontsource/roboto": "5.1.0",
"astro": "5.4.1",
"astro-social-share": "2.2.0",
"class-variance-authority": "0.7.0",
"clsx": "2.1.0",
"dotenv": "16.4.5",
"dotenv-expand": "11.0.6",
"typescript": "5.6.2",
"zod": "3.25.67"
},
"devDependencies": {
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"autoprefixer": "10.4.16",
"cross-env": "7.0.3",
"eslint": "8.55.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"prettier": "3.1.0",
"prettier-plugin-astro": "0.14.1",
"shx": "0.3.4"
},
"engines": {
"node": "^22"
},
"lint-staged": {
"*.{ts,tsx,js,astro}": [
"eslint --fix --no-color",
"tsc --pretty false --noEmit"
]
}
}