-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.15 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.15 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
{
"name": "yahtml",
"version": "0.0.5",
"description": "YAHTML (YAML HTML) - Write HTML as valid YAML with clean, concise syntax",
"keywords": [
"html",
"yaml",
"template",
"templating",
"markup",
"converter",
"yahtml",
"html-generator",
"yaml-to-html"
],
"homepage": "https://github.com/yuusoft-org/yahtml#readme",
"bugs": {
"url": "https://github.com/yuusoft-org/yahtml/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuusoft-org/yahtml.git"
},
"license": "MIT",
"author": "Yuusoft",
"type": "module",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts"
}
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.cjs",
"index.d.ts",
"src/",
"LICENSE",
"README.md"
],
"scripts": {
"test": "vitest run --reporter=verbose",
"test:watch": "vitest",
"perf": "node spec/performance.test.js",
"build:types": "bunx tsc"
},
"devDependencies": {
"puty": "^0.0.4",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=14.0.0"
}
}