-
Notifications
You must be signed in to change notification settings - Fork 12.1k
/
Copy pathpackage.json
72 lines (72 loc) · 1.95 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
68
69
70
71
72
{
"name": "30-seconds-of-code",
"private": true,
"version": "13.0.0",
"description": "30 seconds of code website.",
"exports": "./index.js",
"author": "chalarangelo",
"type": "module",
"devDependencies": {
"@shikijs/colorized-brackets": "^3.2.2",
"astro": "^5.7.2",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"front-matter": "^4.0.2",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"hast-util-to-string": "^3.0.0",
"js-yaml": "^4.1.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prismjs": "^1.30.0",
"rehype-stringify": "^10.0.0",
"rehype-unwrap-images": "^1.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sass": "^1.86.3",
"sharp": "^0.33.5",
"shiki": "^3.2.2",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"unist-util-visit-parents": "^6.0.1",
"vitest": "^3.1.1"
},
"imports": {
"#src/*": [
"./src/*"
],
"#spec/*": [
"./spec/*"
]
},
"scripts": {
"predev": "bin/prepare dev --fast-highlight",
"dev": "astro dev --port 8000",
"watch": "npm run dev & bin/prepare watch --fast-highlight",
"prestart": "bin/prepare dev",
"start": "astro dev --port 8000",
"observe": "npm run start & bin/prepare watch",
"prebuild": "bin/prepare full",
"build": "astro build",
"preview": "astro preview --port 9000",
"create": "bin/prepare create",
"create-component": "bin/prepare create-component",
"console": "bin/console",
"test": "vitest"
},
"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": ">=22.14.0"
}
}