-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.27 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
{
"name": "@dennislu/ti",
"version": "0.4.1",
"description": "Just run your task easily",
"author": "Dennis Lu <jiahehz@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/lumenghz/ti.git"
},
"license": "MIT",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist",
"bin"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"bin": {
"ti": "bin/ti.mjs"
},
"scripts": {
"prepublishOnly": "npm run build",
"dev": "esno src/bin/ti.ts",
"build": "unbuild",
"lint": "eslint src",
"test": "vitest run",
"release": "standard-version"
},
"devDependencies": {
"@antfu/eslint-config-ts": "^0.43.1",
"@types/node": "^22.5.1",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.33",
"consola": "^3.2.3",
"eslint": "^9.9.1",
"esno": "^4.7.0",
"execa": "^9.3.1",
"fzf": "^0.5.2",
"globby": "^14.0.2",
"prompts": "^2.4.2",
"standard-version": "^9.5.0",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"vitest": "^2.0.5",
"yaml": "^2.5.0",
"yargs": "^17.7.2"
},
"eslintConfig": {
"extends": [
"@antfu/eslint-config-ts"
]
}
}