-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.14 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
{
"name": "quick-publish",
"description": "Shipped a standard `npm publish` workflow with one click.",
"version": "0.7.1",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"bin": {
"quick-publish": "bin/cli.js"
},
"keywords": [
"workflow",
"speedy",
"speedy-js",
"publish",
"release",
"npm publish"
],
"scripts": {
"bootstrap": "pnpm i --prefer-offline",
"dev": "npm run build -- -w",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext js,ts,tsx",
"lint:fix": "npm run lint -- --fix",
"release": "quick-publish"
},
"dependencies": {
"cac": "6.7.14",
"conventional-changelog-cli": "2.2.2",
"execa": "5",
"inquirer": "8",
"semver": "7.3.8"
},
"devDependencies": {
"@types/inquirer": "8",
"@types/node": "18.11.18",
"@types/semver": "7.3.13",
"eslint": "8.32.0",
"eslint-config-typescript-library": "0.2.4",
"quick-publish": "0.6.0",
"typescript": "4.9.4"
},
"files": [
"bin",
"lib",
"!lib/*.tsbuildinfo",
"!lib/*.map",
"types",
"*.d.ts"
]
}