-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.01 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.01 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "create-lit",
"version": "1.5.0",
"main": "./src/cli.js",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/litelement-dev/create-lit.git"
},
"scripts": {
"build": "tsup src/cli.mts --minify",
"clean": "shx rm -rf dist",
"dev": "tsup src/cli.mts --watch",
"prepublishOnly": "pnpm clean && pnpm build",
"lint": "eslint --ext .ts --ignore-path .eslintignore .",
"release": "standard-version --no-verify",
"minor": "standard-version --release-as minor --no-verify"
},
"tsup": {
"format": [
"esm"
]
},
"bin": "dist/cli.js",
"files": [
"dist",
"templates"
],
"dependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/is-utf8": "^0.2.3",
"@types/uuid": "^10.0.0",
"chalk": "^5.3.0",
"command-exists": "^1.2.9",
"common-tags": "^1.8.2",
"create-create-app": "^7.3.0",
"cross-spawn": "^7.0.3",
"epicfail": "^3.0.0",
"execa": "^9.4.1",
"gitconfig": "^2.0.8",
"globby": "^14.0.2",
"handlebars": "^4.7.8",
"is-utf8": "^0.2.1",
"license.js": "^3.1.2",
"slash": "^5.1.0",
"uuid": "^10.0.0",
"yargs-interactive": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/command-exists": "^1.2.3",
"@types/common-tags": "^1.8.4",
"@types/node": "^22.7.7",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.13.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"import-sort-style-module": "^6.0.0",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"importSort": {
".js, .mjs, .ts, .mts, .cts": {
"style": "module",
"parser": "typescript"
}
},
"engines": {
"node": ">=22.4.0",
"pnpm": ">=9.0.0"
}
}