-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.13 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
{
"name": "@lexmin0412/tpc",
"version": "2.4.0",
"description": "a typescript project creator",
"main": "./lib/index.js",
"files": [
"es",
"lib"
],
"bin": {
"tpc": "./lib/cli.js"
},
"engines": {
"node": ">=18.0.0 <19.0.0",
"pnpm": ">=8.0.0 <9.0.0"
},
"scripts": {
"lint": "lint-staged",
"prepublishOnly": "npm run build",
"build:commonjs": "rimraf lib && tsc --target es5 --outDir lib --module commonjs --declaration",
"build:es": "rimraf es && tsc --target es6 --outDir es --module es6",
"build": "npm run build:commonjs && npm run build:es",
"ts": "ts-node src/",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lexmin0412/typescript-project-creator.git"
},
"keywords": [
"typescript",
"ts",
"init",
"initializer",
"npm",
"npm init",
"generator",
"project",
"library"
],
"author": {
"name": "lexmin0412",
"email": "[email protected]",
"url": "https://blog.cellerchan.top"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/goldenlynx/ts-init/issues"
},
"homepage": "https://github.com/lexmin0412/typescript-project-creator#readme",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^18.0.4",
"eslint": "^4.19.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pkg-types": "^1.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"types": "./lib/index.d.ts",
"jsnext:main": "./es/index.js",
"module": "./es/index.js",
"dependencies": {
"commander": "^9.4.0",
"inquirer": "^8.2.6",
"ora": "5.1.0",
"vitepress": "1.0.0-alpha.4",
"vue": "^3.2.37"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/react",
"react",
"react-dom"
]
}
},
"lint-staged": {
"*.ts,*.js": "eslint"
}
}