-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.88 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
{
"name": "eleventy-plugin-vento",
"version": "4.1.0",
"description": "Adds support for the Vento templating language to Eleventy.",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest --run",
"check": "pnpm --color run '/^check:/'",
"check:lint": "eslint '.'",
"check:types": "tsc --noEmit",
"build": "tsup",
"dev": "tsup --watch ./src",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "changeset publish",
"format": "pnpm dlx prettier --config ./package.json --write ."
},
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"import": "./dist/plugin.js",
"types": "./dist/plugin.d.ts"
}
},
"files": [
"dist/*",
"LICENSE",
"CHANGELOG.md",
"readme.md"
],
"repository": "[email protected]:noelforte/eleventy-plugin-vento.git",
"bugs": {
"url": "https://github.com/noelforte/eleventy-plugin-vento/issues"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"ventojs",
"templating"
],
"author": {
"name": "Noel Forte",
"email": "[email protected]",
"url": "https://forte.is/"
},
"license": "MIT",
"dependencies": {
"debug": "4.4.0",
"ventojs": "1.12.14"
},
"devDependencies": {
"11ty.ts": "0.0.5",
"@11ty/eleventy": "3.0.1-alpha.1",
"@changesets/cli": "2.27.11",
"@eslint/js": "9.17.0",
"@types/debug": "4.1.12",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.5",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.14.0",
"tsup": "8.3.5",
"type-fest": "4.31.0",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"vitest": "2.1.8"
},
"prettier": {
"bracketSameLine": true,
"singleQuote": true,
"semi": true,
"trailingComma": "es5"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"@11ty/eleventy": "^3.0.0"
}
}
}
}