-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.78 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
{
"name": "postcss-homepage",
"private": true,
"homepage": "https://postcss.org/",
"license": "MIT",
"repository": "postcss/postcss.org",
"type": "module",
"scripts": {
"start": "vite --host 0.0.0.0",
"test:js": "oxlint",
"test:css": "stylelint src/**/*.pcss",
"test:build": "node --run build && size-limit",
"test": "pnpm run /^test:/",
"clean": "rm -Rf dist/",
"build:home": "NODE_ENV=production ./scripts/build-home.js",
"build:api": "NODE_ENV=production ./scripts/build-api.js",
"build:docs": "NODE_ENV=production ./scripts/build-docs.js",
"build": "node --run build:home && node --run build:api && node --run build:docs",
"start:build": "serve dist --no-clipboard"
},
"dependencies": {
"@types/node": "26.1.2",
"autoprefixer": "^10.5.4",
"jstransformer-lowlight": "^0.1.0",
"postcss": "^8.5.24",
"postcss-hexrgba": "^2.1.0",
"postcss-media-minmax": "^5.0.0",
"postcss-nested": "^7.0.2",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"source-map-js": "^1.2.1",
"typedoc": "^0.24.8",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vite": "^8.1.5",
"vite-plugin-pug-transformer": "^1.0.8"
},
"devDependencies": {
"@logux/oxc-configs": "^1.0.0",
"@logux/stylelint-config": "^1.0.1",
"@size-limit/file": "^13.0.1",
"eslint-plugin-prefer-let": "^4.2.2",
"nano-staged": "^1.0.2",
"oxlint": "^1.76.0",
"oxlint-tsgolint": "^7.0.2001",
"serve": "^14.2.6",
"simple-git-hooks": "^2.13.1",
"size-limit": "^13.0.1",
"stylelint": "^17.14.1",
"svgo": "^4.0.2",
"typescript": "~5.0.4"
}
}