-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ecto",
"version": "4.1.4",
"description": "Modern Template Consolidation Engine for EJS, Markdown, Pug, Nunjucks, Liquid, and Handlebars",
"type": "module",
"main": "./dist/ecto.js",
"module": "./dist/ecto.js",
"types": "./dist/ecto.d.ts",
"exports": {
".": {
"import": "./dist/ecto.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredwray/ecto.git"
},
"author": "Jared Wray <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "tsc -w -p .",
"clean": "rimraf ./dist yarn.lock package-lock.json pnpm-lock.yaml ./coverage ./node_modules ./site/readme.md ./dist-site",
"test": "xo --fix && vitest run --coverage",
"compile": "rimraf ./dist && tsup src/ecto.ts --format esm --dts --clean",
"build": "rimraf ./dist && npm run compile",
"prepare": "rimraf ./dist && npm run compile",
"website:build": "rimraf ./site/readme.md && npx -y docula build -s ./site -o ./dist-site",
"website:serve": "rimraf ./site/readme.md && npx -y docula serve -s ./site -o ./dist-site"
},
"keywords": [
"templates",
"generator",
"framework",
"html",
"handlebars",
"hbs",
"markdown",
"hjs",
"ejs",
"consolidate",
"consolidatejs",
"pug",
"jade",
"nunjucks",
"njk",
"mustache",
"liquid",
"liquidjs"
],
"dependencies": {
"@jaredwray/fumanchu": "^3.0.1",
"ejs": "^3.1.10",
"liquidjs": "^10.19.0",
"nunjucks": "^3.2.4",
"pug": "^3.0.3",
"underscore": "^1.13.7",
"writr": "^4.1.4"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/node": "^22.10.1",
"@types/nunjucks": "^3.2.6",
"@types/pug": "^2.0.10",
"@types/underscore": "^1.13.0",
"@vitest/coverage-v8": "^2.1.6",
"docula": "^0.9.5",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.6",
"webpack": "^5.96.1",
"xo": "^0.59.3"
},
"xo": {
"ignores": [
"vitest.config.mjs"
],
"rules": {
"n/file-extension-in-import": "off"
}
},
"files": [
"dist",
"bin",
"LISCENSE"
]
}