-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.24 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.24 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
{
"name": "app",
"version": "1.0.0",
"private": true,
"type": "module",
"exports": {
"./*": {
"types": "./src/*.d.ts",
"default": [
"./src/*",
"./src/*.ts"
]
}
},
"scripts": {
"build": "marko-run build",
"deploy": "marko-run build && gh-pages --cname markojs.com --nojekyll -d dist/public -u \"marko-js <noreply@markojs.com>\"",
"dev": "marko-run",
"format": "prettier . -w",
"lint": "markdownlint \"docs/**/*.md\" && cspell \"**/*.{md,ts,marko}\"",
"prepare": "husky",
"preview": "marko-run preview"
},
"dependencies": {
"@ebay/browserslist-config": "^2.13.0",
"flexsearch": "^0.8.212"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@fontsource/ubuntu": "^5.2.8",
"@fontsource/ubuntu-mono": "^5.2.8",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@jridgewell/source-map": "^0.3.11",
"@marko/run": "^0.9.6",
"@marko/run-adapter-static": "^2.0.4",
"@marko/type-check": "^2.1.28",
"@rollup/browser": "^4.59.0",
"@shikijs/langs": "^4.0.2",
"@types/flexsearch": "^0.7.6",
"@types/node": "^25.5.0",
"assert": "./shim/assert",
"autoprefixer": "^10.4.27",
"codemirror": "^6.0.2",
"cspell": "^9.7.0",
"events": "^3.3.0",
"gh-pages": "^6.3.0",
"github-slugger": "^2.0.0",
"hastscript": "^9.0.1",
"husky": "^9.1.7",
"lightningcss-wasm": "^1.32.0",
"lz-string": "^1.5.0",
"markdownlint-cli": "^0.48.0",
"marked": "^17.0.4",
"marko": "^6.0.147",
"path": "./shim/path",
"path-browserify": "^1.0.1",
"postcss": "^8.5.8",
"postcss-import": "^16.1.1",
"postcss-preset-env": "^11.2.0",
"prettier": "^3.8.1",
"prettier-plugin-marko": "^4.0.8",
"prettier-plugin-packagejson": "^3.0.2",
"pretty-format": "^30.3.0",
"resolve-sync": "^1.2.0",
"sass-embedded": "^1.98.0",
"shiki": "^4.0.2",
"terser": "^5.46.0",
"util": "./shim/util",
"vite-css-modules": "^1.13.1",
"writable-dom": "^1.0.6"
}
}