-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.23 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.23 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
{
"name": "@dile/cli",
"version": "0.0.7",
"description": "Dile Components CLI",
"repository": {
"type": "git",
"url": "https://github.com/Polydile/dile-cli.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx @11ty/eleventy --serve",
"build": "npx @11ty/eleventy",
"app:dev": "cd app && npm run dev",
"app:build": "cd app && npm run build",
"app:install": "cd app && npm install",
"build:app-templates": "node lib/scripts/build-app-templates.js"
},
"keywords": [
"cli",
"dile components",
"web components"
],
"author": "Miguel Angel Alvarez",
"license": "MIT",
"type": "module",
"dependencies": {
"commander": "^14.0.3",
"cosmiconfig": "^9.0.0",
"handlebars": "^4.7.8",
"update-notifier": "^7.3.1"
},
"bin": {
"dile": "./bin/dile.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"lib/",
"templates/",
"*.md",
"LICENSE*"
],
"preferGlobal": true,
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-vite": "^7.0.0",
"@dile/iconlib": "^1.0.1",
"@dile/ui": "^2.11.0",
"vite": "^7.3.1"
}
}