-
Notifications
You must be signed in to change notification settings - Fork 12k
/
package.json
67 lines (67 loc) · 1.71 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
61
62
63
64
65
66
67
{
"name": "30-seconds-of-code",
"private": true,
"version": "12.0.0",
"description": "30 seconds of code website.",
"exports": "./index.js",
"author": "chalarangelo",
"type": "module",
"devDependencies": {
"astro": "^4.16.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"front-matter": "^4.0.2",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"hast-util-to-string": "^3.0.0",
"js-yaml": "^4.1.0",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"prismjs": "^1.29.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"remark-unwrap-images": "^4.0.0",
"sass": "^1.68.0",
"sharp": "^0.33.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1",
"vitest": "^2.0.4"
},
"imports": {
"#src/*": [
"./src/*"
],
"#spec/*": [
"./spec/*"
]
},
"scripts": {
"predev": "bin/prepare dev",
"dev": "astro dev --port 8000",
"start": "astro dev --port 8000",
"prebuild": "bin/prepare full",
"build": "astro build",
"preview": "astro preview --port 9000",
"test": "vitest",
"create": "bin/prepare create",
"console": "bin/console",
"watch": "npm run dev & bin/prepare watch"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Chalarangelo/30-seconds-of-code"
},
"bugs": {
"url": "https://github.com/Chalarangelo/30-seconds-of-code/issues"
},
"browserslist": [
"> 0.5% and last 4 versions and not dead and not ie>0 and not op_mini all and not and_uc>0 and not edge<79"
],
"engines": {
"node": ">=20.11.1"
}
}