-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "@mineadmin/npm-release",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "发包工具",
"main": "bin/publish.js",
"bin": {
"publish": "bin/publish.js"
},
"keywords": [
"@mineadmin/npm-release",
"typescript"
],
"homepage": "https://github.com/mineadmin/npm-release",
"license": "MIT",
"author": "kanyxmo",
"repository": {
"type": "git",
"url": "git+https://github.com/mineadmin/npm-release.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"bin"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint . --fix && prettier --write \"src/**\"",
"typecheck": "tsc --noEmit",
"lint:pretty": "pretty-quick --staged",
"publish": "esno src/index.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@esbuild-kit/cjs-loader": "^2.1.0",
"@types/inquirer": "^9.0.3",
"@types/node": "^17.0.42",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.15.0",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"esno": "^0.16.3",
"inquirer": "^9.1.4",
"minimist": "^1.2.7",
"picocolors": "^1.0.0",
"prettier": "^2.7.0",
"simple-git": "^3.16.0",
"tsup": "^6.5.0",
"typescript": "^5.3.3"
}
}