-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.24 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
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
{
"name": "@simon_he/pi",
"type": "module",
"version": "0.0.98",
"packageManager": "[email protected]",
"description": "A powerful and flexible command-line tool for managing projects.",
"author": "Simon He",
"license": "MIT",
"funding": "https://github.com/sponsors/Simon-He95",
"homepage": "https://github.com/Simon-He95/pi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Simon-He95/pi.git"
},
"bugs": "https://github.com/Simon-He95/pi/issues",
"keywords": [
"command-line",
"tool",
"project-management",
"automation",
"nodejs",
"rust",
"go"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"pi": "./pi.mjs",
"pio": "./pio.mjs",
"pix": "./pix.mjs",
"pa": "./pa.mjs",
"pu": "./pu.mjs",
"pci": "./pci.mjs",
"pil": "./pil.mjs",
"pui": "./pui.mjs",
"prun": "./prun.mjs",
"pinit": "./pinit.mjs",
"pbuild": "./pbuild.mjs",
"pfind": "./pfind.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts --clean ",
"dev": "bun build -- --watch src",
"format": "prettier --write --cache .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ccommand": "^1.0.73",
"fast-glob": "latest",
"semver": "^7.7.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.2",
"@types/node": "^18.19.75",
"bumpp": "^8.2.1",
"eslint": "^8.57.1",
"lazy-js-utils": "^0.1.30",
"lint-staged": "^13.3.0",
"ora": "^6.3.1",
"picocolors": "^1.1.1",
"prettier": "^2.8.8",
"tsup": "^8.0.0",
"tsx": "^3.14.0",
"typescript": "^4.9.5",
"vitest": "^3.0.5"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint . --fix"
}
}