-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) 路 1.73 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) 路 1.73 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
{
"name": "@turbostarter/cli",
"version": "1.8.0",
"main": "index.mjs",
"type": "module",
"exports": "./dist/index.mjs",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bin": {
"turbostarter": "./dist/index.mjs"
},
"repository": {
"url": "https://github.com/turbostarter/cli.git"
},
"homepage": "https://turbostarter.dev",
"files": [
"dist"
],
"keywords": [
"turbostarter",
"cli",
"starter kit",
"template",
"web",
"mobile",
"browser extension"
],
"scripts": {
"start": "node dist/index.mjs",
"dev": "tsdown --watch",
"build": "tsdown",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"format:fix": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache"
},
"author": "Bartosz Zagrodzki",
"license": "ISC",
"description": "Your TurboStarter assistant for starting new projects, adding plugins and more.",
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.1",
"@eslint/compat": "2.1.0",
"@eslint/js": "9.39.5",
"@types/lodash": "4.17.24",
"@types/node": "26.1.1",
"@types/prompts": "2.4.9",
"eslint": "9.39.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-unused-imports": "4.4.1",
"prettier": "3.9.5",
"tsdown": "0.22.8",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0"
},
"dependencies": {
"commander": "15.0.0",
"execa": "9.6.1",
"lodash": "4.18.1",
"ora": "9.4.1",
"picocolors": "1.1.1",
"prompts": "2.4.2",
"ts-morph": "28.0.0",
"zod": "4.4.3"
},
"packageManager": "pnpm@11.13.1"
}