-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "create-typescript-project-scaffolding",
"version": "0.0.14",
"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": "https://github.com/Trickfilm400/typescript-project-scaffolding"
},
"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.14.0",
"@types/eslint__js": "^8.42.3",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.17.6",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.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.1.0",
"npm-check-updates": "^17.1.11"
},
"type": "module"
}