-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.06 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.06 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
{
"name": "ecto",
"version": "4.8.4",
"description": "Modern Template Consolidation Engine for EJS, Markdown, Pug, Nunjucks, Liquid, and Handlebars",
"type": "module",
"main": "./dist/ecto.mjs",
"module": "./dist/ecto.mjs",
"types": "./dist/ecto.d.mts",
"exports": {
".": {
"types": "./dist/ecto.d.mts",
"import": "./dist/ecto.mjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredwray/ecto.git"
},
"author": "Jared Wray <me@jaredwray.com>",
"license": "MIT",
"scripts": {
"lint": "biome check --write --error-on-warnings",
"lint:ci": "biome check --error-on-warnings",
"clean": "rimraf ./dist yarn.lock package-lock.json pnpm-lock.yaml ./coverage ./node_modules ./site/README.md ./site/dist",
"test": "pnpm lint && vitest run --coverage",
"test:ci": "pnpm lint:ci && vitest run --coverage",
"build": "tsdown",
"prepare": "pnpm build",
"website:build": "rimraf ./site/README.md && pnpm docula build",
"website:dev": "rimraf ./site/README.md && pnpm docula dev"
},
"keywords": [
"templates",
"generator",
"framework",
"html",
"handlebars",
"hbs",
"markdown",
"hjs",
"ejs",
"consolidate",
"consolidatejs",
"pug",
"jade",
"nunjucks",
"njk",
"mustache",
"liquid",
"liquidjs"
],
"dependencies": {
"@jaredwray/fumanchu": "^4.6.1",
"cacheable": "^2.3.4",
"ejs": "^5.0.1",
"ent": "^2.2.2",
"hookified": "^2.1.1",
"liquidjs": "^10.25.5",
"nunjucks": "^3.2.4",
"pug": "^3.0.4",
"writr": "^6.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@faker-js/faker": "^10.4.0",
"@types/ejs": "^3.1.5",
"@types/ent": "^2.2.8",
"@types/node": "^25.5.2",
"@types/nunjucks": "^3.2.6",
"@types/pug": "^2.0.10",
"@vitest/coverage-v8": "^4.1.3",
"docula": "^1.12.0",
"rimraf": "^6.1.3",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vite": "^8.0.5",
"vitest": "^4.1.3"
},
"files": [
"dist",
"bin",
"LISCENSE"
]
}