-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
{
"name": "tinycreate",
"version": "1.0.4",
"author": "jamesgpearce",
"repository": "github:tinyplex/tinycreate",
"license": "MIT",
"description": "A flexible CLI framework for scaffolding projects with templates.",
"keywords": [
"cli",
"scaffolding",
"templates",
"generator"
],
"private": true,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "node build.js",
"ts": "tsc --noEmit",
"prettier": "prettier --check .",
"lint": "eslint .",
"test": "npm run build && vitest run",
"prePublishPackage": "npm run ts && npm run prettier && npm run lint && npm run test"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"handlebars": "^4.7.8",
"prettier": "^3.8.0",
"prettier-plugin-organize-imports": "^4.3.0",
"prompts": "^2.4.2",
"ts-blank-space": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.9",
"@types/prompts": "^2.4.9",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
}
}