-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.78 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
{
"name": "create-typescript-project-scaffolding",
"version": "0.0.16",
"description": "Scaffold your new Typescript project with everything you need",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"dev": "ts-node-dev --respawn --no-deps --rs --cls ./src/index.ts",
"build": "tsc",
"eslint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Trickfilm400/typescript-project-scaffolding.git"
},
"homepage": "https://github.com/Trickfilm400/typescript-project-scaffolding/blob/master/readme.md",
"keywords": [
"template",
"typescript",
"created-with-typescript-new-project-scaffolding",
"scaffloder",
"scaffold-template",
"scaffolder",
"scaffolding",
"inquirer",
"npm-install",
"npm-init",
"npm-cli",
"scaffolder-project"
],
"author": "Nico Wagner",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/eslint__js": "^8.42.3",
"@types/inquirer": "^9.0.9",
"@types/node": "^20.19.27",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"type-fest": "^4.41.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0"
},
"bin": {
"create-typescript-new-project-scaffolding": "dist/index.js",
"typescript-new-project-scaffolding": "dist/index.js",
"ts-scaffold": "dist/index.js"
},
"files": [
"dist",
"static"
],
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"npm-check-updates": "^19.2.0"
},
"type": "module"
}