-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "t2006",
"version": "0.4.0",
"description": "A small, low-opinionated static site generator with sections and items",
"keywords": [
"cli",
"static-site-generator",
"website-builder",
"html-generator",
"css-generator",
"web-development",
"content-management",
"site-generator",
"build-tool",
"deployment"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cinnabar-forge/t2006.git"
},
"license": "ISC",
"author": {
"name": "Timur Moziev",
"email": "[email protected]",
"url": "https://timurrin.github.io"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"t2006": "bin/t2006.js"
},
"files": ["bin", "dist"],
"scripts": {
"build": "node esbuild.js",
"check": "biome check ./src",
"fix": "biome check --fix --unsafe ./src",
"test": "mocha"
},
"dependencies": {
"clivo": "0.5.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cinnabar-forge/meta": "0.3.1",
"chai": "5.1.0",
"esbuild": "0.24.2",
"mocha": "10.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}