-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "iungo",
"version": "0.1.4",
"description": "Generate your pages like a champ with Iungo",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare": "pnpm run build",
"pretest": "pnpm run build",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/aterrae/iungo"
},
"keywords": [
"iungo",
"aterrae",
"websites",
"front-end",
"handlebars",
"typescript"
],
"author": "Aterrae | Digital Growth <info@aterrae.com> (https://aterrae.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aterrae/iungo/issues",
"email": "info@aterrae.com"
},
"homepage": "https://abimis.aterrae.com",
"devDependencies": {
"@types/node": "^24.9.2",
"esbuild": "^0.25.11",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.5"
},
"dependencies": {
"glob": "^11.0.3",
"handlebars": "^4.7.8"
},
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd"
}