generated from Bernankez/TSTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.65 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "create-l",
"type": "module",
"version": "2.5.0",
"packageManager": "bun@1.1.27",
"description": "TypeScript Library Scaffold.",
"author": {
"name": "Cole",
"email": "bernankeic@gmail.com",
"url": "https://github.com/Bernankez"
},
"license": "MIT",
"homepage": "https://github.com/Bernankez/create-l#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Bernankez/create-l.git"
},
"bugs": "https://github.com/Bernankez/create-l/issues",
"keywords": [
"template",
"typescript",
"lib",
"scaffold",
"starter"
],
"sideEffects": false,
"bin": {
"create-l": "./bin/index.js",
"cl": "./bin/index.js"
},
"files": [
"bin",
"dist",
"templates"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "simple-git-hooks",
"prepack": "nr build",
"build": "nr clean && tsup --format esm,cjs --clean --dts",
"dev": "tsup --format esm,cjs --watch",
"preview": "cross-env NODE_ENV=development node --watch bin/index.js",
"play": "na --filter './playground' dev --open",
"play:build": "na --filter './playground' build",
"play:preview": "na --filter './playground' preview --open",
"clean": "tsx scripts/clean.ts",
"bump": "tsx scripts/bump.ts",
"release": "bumpp && npm publish",
"test": "vitest",
"test:once": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint . -f mo",
"fix": "eslint . -f mo --fix"
},
"dependencies": {
"cac": "^6.7.14",
"chalk": "^5.3.0",
"enquirer": "^2.4.1",
"pacote": "^18.0.6",
"sort-package-json": "^2.10.1",
"taze": "^0.16.7"
},
"devDependencies": {
"@antfu/ni": "^0.23.0",
"@bernankez/eslint-config": "^2.2.0",
"@bernankez/utils": "^0.6.4",
"@types/fs-extra": "^11.0.4",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.5.4",
"@types/pacote": "^11.1.8",
"@unocss/eslint-plugin": "^0.62.3",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"bumpp": "^9.5.2",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"eslint-formatter-mo": "^1.2.0",
"eslint-plugin-format": "^0.1.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.10",
"micromatch": "^4.0.8",
"scule": "^1.3.0",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.2.4",
"tsx": "^4.19.0",
"typescript": "^5.6.2",
"vitest": "^2.0.5"
},
"simple-git-hooks": {
"pre-commit": "nlx lint-staged --cwd ."
},
"lint-staged": {
"*": "eslint --fix"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"playground"
]
}