This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
127 lines (127 loc) · 3.77 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@manuth/generator-ts-project",
"version": "4.1.0",
"type": "module",
"description": "A Set of Generators for Creating Projects Written in TypeScript",
"author": "Manuel Thalmann <[email protected]>",
"license": "MIT",
"keywords": [
"yo",
"yoeoman-generator",
"Generator",
"TypeScript"
],
"exports": {
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"homepage": "https://github.com/manuth/TSProjectGenerator/tree/main/packages/generator-ts-project#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/manuth/TSProjectGenerator.git",
"directory": "packages/generator-ts-project"
},
"bugs": {
"url": "https://github.com/manuth/TSProjectGenerator/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build-base": "tsc -b",
"build": "npm run build-base -- ../../tsconfig.build.json",
"rebuild": "npm run clean && npm run build",
"watch": "npm run build -- --watch",
"clean-base": "npm run build -- --clean && rimraf",
"clean": "npm run clean-base -- ../*/lib",
"lint-code": "eslint --max-warnings 0 ./src .eslintrc.cjs",
"lint-code-ide": "npm run lint-code || exit 0",
"lint-docs": "markdownlint ./templates/**/*.md ./templates/**/*.md.ejs",
"lint": "npm run lint-code && npm run lint-docs",
"lint-ide": "npm run lint || exit 0",
"test": "mocha && tsd",
"initialize": "npm run patch-ts && npm run rebuild",
"patch-ts": "ts-patch install"
},
"dependencies": {
"@manuth/eslint-plugin-typescript": "^4.0.0",
"@manuth/extended-yo-generator": "^12.1.2",
"@manuth/package-json-editor": "^3.0.2",
"@manuth/temp-files": "^3.0.2",
"@types/inquirer": "^9.0.1",
"@types/node": "^18.7.18",
"@types/vscode": "^1.71.0",
"chalk": "^5.0.1",
"comment-json": "^4.2.3",
"dedent": "^0.7.0",
"diff": "^5.1.0",
"eol": "^0.9.1",
"fs-extra": "^10.1.0",
"inquirer": "^9.1.2",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"npm-which": "^3.0.1",
"parse-pkg-name": "^2.0.0",
"ts-morph": "^16.0.0",
"types-eslintrc": "^1.0.3",
"types-tsconfig": "^1.2.1",
"upath": "^2.0.1",
"validate-npm-package-name": "^4.0.0",
"yaml": "^2.1.1",
"yosay": "^2.0.2"
},
"devDependencies": {
"@manuth/extended-yo-generator-test": "^12.1.2",
"@manuth/generator-ts-project-test": "^4.1.0",
"@manuth/tsconfig": "^3.0.2",
"@tsd/typescript": "npm:nop@^1.0.0",
"@types/dedent": "^0.7.0",
"@types/diff": "^5.0.2",
"@types/eslint": "^8.4.6",
"@types/fs-extra": "^9.0.13",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/mocha": "^9.1.1",
"@types/mock-require": "^2.0.1",
"@types/mute-stream": "^0.0.1",
"@types/npm-which": "^3.0.1",
"@types/sinon": "^10.0.13",
"@types/ts-nameof": "^4.2.1",
"@types/validate-npm-package-name": "^4.0.0",
"@types/yosay": "2.0.1",
"compare-versions": "^5.0.1",
"detect-newline": "^4.0.0",
"eslint": "^8.23.1",
"markdownlint-cli": "^0.32.2",
"mocha": "^10.0.0",
"mock-require": "^3.0.3",
"mock-stdin": "^1.0.0",
"mute-stream": "^0.0.8",
"pkg-dir": "^7.0.0",
"randexp": "^0.5.3",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"source-map-support": "^0.5.21",
"ts-nameof": "^5.0.0",
"ts-patch": "^2.0.2",
"tsd": "^0.24.1",
"tslint": "^6.1.3",
"typescript": "^4.8.3",
"util.chdir": "0.0.43",
"yeoman-test": "^6.3.0",
"yo": "^4.3.0"
},
"tsd": {
"directory": "./src/tests/type-tests",
"compilerOptions": {
"strict": false
}
}
}