forked from tiged/tiged
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.36 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.36 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "tiged",
"version": "2.12.7",
"engines": {
"node": ">=18.0.0"
},
"description": "Straightforward project scaffolding",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"module-sync": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"module": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"degit": "dist/bin.cjs",
"tiged": "dist/bin.js"
},
"scripts": {
"lint": "eslint --color .",
"lint:fix": "eslint --color . --fix",
"erase-ts-config-paths": "tsx scripts/eraseTSConfigPaths.mts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "tsx scripts/remove.mts",
"build": "npm run clean && tsup",
"test": "vitest --typecheck",
"test-types": "tsc -p tsconfig.json --noEmit",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiged/tiged.git"
},
"keywords": [
"scaffolding",
"template",
"git"
],
"author": "tiged",
"license": "MIT",
"bugs": {
"url": "https://github.com/tiged/tiged/issues"
},
"homepage": "https://github.com/tiged/tiged#readme",
"dependencies": {
"enquirer": "^2.4.1",
"fuzzysearch": "^1.0.3",
"https-proxy-agent": "^7.0.6",
"mri": "^1.2.0",
"picocolors": "^1.1.1",
"tar": "^7.4.3",
"tinyglobby": "^0.2.13"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/fuzzysearch": "^1.0.2",
"@types/node": "^22.14.1",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.2"
},
"sideEffects": false,
"files": [
"src",
"dist",
"help.md"
],
"publishConfig": {
"access": "public",
"provenance": true
}
}