-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.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": "knightly",
"version": "0.5.6",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"scripts": {
"prepublishOnly": "rimraf dist && npm run build",
"dev": "KNIGHTLY_DEBUG=true esno src/cli.ts -c knightly.json --dry-run --no-skip",
"build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts",
"release": "npx bumpp --commit --push --tag && npm publish"
},
"bin": {
"knightly": "bin/knightly.js"
},
"files": [
"bin",
"dist",
"src"
],
"dependencies": {
"@octokit/rest": "^18.5.3",
"chalk": "^4.1.1",
"dayjs": "^1.10.4",
"debug": "^4.3.2",
"execa": "^5.0.0",
"fast-glob": "^3.2.5",
"fs-extra": "^9.1.0",
"js-yaml": "^4.1.0",
"markdown-table": "^2.0.0",
"pacote": "^11.3.2",
"param-case": "^3.0.4",
"semver": "^7.3.5",
"simple-git": "^2.38.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.6.4",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.11",
"@types/js-yaml": "^4.0.0",
"@types/markdown-table": "^2.0.0",
"@types/node": "^14.14.41",
"@types/pacote": "^11.1.0",
"@types/semver": "^7.3.4",
"@types/yargs": "^16.0.1",
"eslint": "^7.24.0",
"esno": "^0.5.0",
"rimraf": "^3.0.2",
"tsup": "^4.9.1",
"typescript": "^4.2.4"
},
"eslintConfig": {
"extends": "@antfu/eslint-config-ts"
}
}