-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.45 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "kpo",
"description": "A task runner that goes where npm scripts won't, for the true capo",
"version": "0.28.0",
"author": "rafamel",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"task runner",
"task",
"runner",
"run",
"cli",
"nps",
"jake"
],
"type": "module",
"types": "./build/index.d.ts",
"exports": "./build/index.js",
"bin": {
"kpo": "./build/cli/kpo.js"
},
"files": [
"build/"
],
"engines": {
"node": ">=22"
},
"scripts": {
"start": "kpo start --",
"watch": "kpo watch --",
"build": "kpo build --",
"tarball": "kpo tarball --",
"docs": "kpo docs --",
"lint": "kpo lint --",
"fix": "kpo fix --",
"test": "kpo test --",
"commit": "kpo commit --",
"release": "kpo release --",
"distribute": "kpo distribute --",
"validate": "kpo validate --",
"version": "kpo version --"
},
"homepage": "https://github.com/rafamel/kpo",
"repository": {
"type": "git",
"url": "git+https://github.com/rafamel/kpo.git"
},
"bugs": {
"url": "https://github.com/rafamel/kpo/issues"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@riseup/universal": "^0.22.0",
"@riseup/utils": "^0.22.0",
"@types/common-tags": "^1.8.0",
"@types/debounce": "^1.2.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.10",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^2.0.2",
"eslint": "^8.57.0",
"import-meta-resolve": "^4.1.0",
"kpo": "^0.27.0",
"prettier": "^3.2.5",
"tsc-alias": "^1.8.10",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typedoc": "^0.26.4",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.5.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.2"
},
"dependencies": {
"arg": "^5.0.0",
"as-table": "^1.0.55",
"chalk": "^5.0.1",
"chokidar": "^3.5.1",
"ci-info": "^4.0.0",
"cli-belt": "^2.0.0",
"cli-select": "^1.1.2",
"common-tags": "^1.8.0",
"debounce": "^2.1.0",
"errorish": "^1.0.0",
"execa": "^9.3.0",
"exits": "^2.0.1",
"find-up": "^7.0.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"is-unicode-supported": "^2.0.0",
"merge-strategies": "^0.3.0",
"nanoid": "^5.0.7",
"ora": "^8.0.1",
"pipettes": "^0.1.3",
"prefix-stream": "^1.0.1",
"type-core": "^0.13.0",
"update-notifier": "^7.0.0"
}
}