-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.57 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.57 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
{
"name": "minimalify",
"version": "0.1.2",
"description": "Minimalify is a zero-dependency CLI/library for building blazing-fast, static HTML/CSS/JS sites",
"license": "Apache-2.0",
"publisher": "ragarwal06",
"type": "module",
"author": "ragarwalll <agarwal.rahul324@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ragarwalll/minimalify.git"
},
"icon": "logo/logo.png",
"keywords": [
"minimalify",
"cli",
"html",
"css",
"js",
"static",
"site",
"generator"
],
"categories": [
"Programming Languages",
"Other"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"minimalify": "./dist/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"prepare": "husky",
"start": "cross-env NODE_ENV=development node dist/index.js",
"typecheck": "npm run clean && tsc",
"build": "tsup",
"dev": "cross-env NODE_ENV=development tsx src/index.ts",
"clean": "rimraf dist .minimalify",
"test": "jest --passWithNoTests",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"format": "prettier --check \"src/**/*.{cjs,mjs,ts,tsx,md,json}\"",
"format:fix": "prettier --write \"src/**/*.{cjs,mjs,ts,tsx,md,json}\"",
"beta": "npm run build && npm publish --tag beta --access public",
"release": "npm run build && npm publish --access public"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/axe-core": "^3.0.6",
"@types/babel__code-frame": "^7.0.6",
"@types/fs-extra": "^11.0.4",
"@types/html-minifier-terser": "^7.0.2",
"@types/jest": "^29.5.14",
"@types/jsdom": "^27.0.0",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^24.0.15",
"@types/ws": "^8.18.1",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.26.0",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.2",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
},
"dependencies": {
"@types/markdown-it": "^14.1.2",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.21",
"axe-core": "^4.10.3",
"bloom-filters": "^3.0.4",
"commander": "^14.0.0",
"cssnano": "^7.0.7",
"fast-glob": "^3.3.3",
"front-matter": "^4.0.2",
"html-minifier-terser": "^7.2.0",
"htmlhint": "^1.1.4",
"jsdom": "^27.0.1",
"markdown-it": "^14.1.0",
"morphdom": "^2.7.5",
"parse5": "^7.3.0",
"postcss": "^8.5.3",
"purgecss": "^7.0.2",
"sharp": "^0.34.1",
"stylelint": "^16.19.1",
"svgo": "^3.3.2",
"terser": "^5.39.0",
"type-fest": "^4.41.0",
"ws": "^8.18.2",
"xxhash-wasm": "^1.1.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.45.1"
}
}