-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "@pureadmin/release",
"version": "1.1.0",
"packageManager": "[email protected]",
"description": "超简单的发包工具(修改版本号并提交git、自动打包、发布npm、计算并显示打包后文件大小)",
"main": "bin/publish.js",
"bin": {
"pub": "bin/publish.js"
},
"keywords": [
"@pureadmin/release",
"pure-admin-release",
"npm-publish-tool",
"typescript"
],
"homepage": "https://github.com/pure-admin/pure-admin-release/tree/main/#readme",
"bugs": {
"url": "https://github.com/pure-admin/pure-admin-release/issues"
},
"license": "MIT",
"author": "xiaoxian521",
"repository": {
"type": "git",
"url": "git+https://github.com/pure-admin/pure-admin-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:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
"pub": "esno src/index.ts",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@esbuild-kit/cjs-loader": "^2.1.0",
"@pureadmin/utils": "^1.8.2",
"@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",
"husky": "^8.0.1",
"inquirer": "^9.1.4",
"lint-staged": "^13.0.1",
"minimist": "^1.2.7",
"picocolors": "^1.0.0",
"prettier": "^2.7.0",
"simple-git": "^3.15.1",
"tsup": "^6.5.0",
"typescript": "^5.3.3"
}
}