-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.67 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.67 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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@simon_he/pi",
"type": "module",
"version": "0.2.11",
"packageManager": "[email protected]",
"description": "An intelligent cross-platform package manager and CLI tool that autodetects project environments (Node.mjs, Go, Rust, Python) with beautiful loading animations and smart command execution.",
"author": {
"name": "Simon He",
"url": "https://github.com/Simon-He95"
},
"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",
"python",
"package-manager",
"cli",
"developer-tools",
"npm-alternative",
"pnpm",
"yarn",
"cargo",
"pip",
"monorepo",
"workspace",
"dependency-management",
"development-workflow",
"cross-platform",
"javascript",
"typescript",
"smart-detection"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"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": "tsdown ./src/index.ts --format cjs,esm --clean",
"dev": "pnpm build --watch src",
"format": "prettier --write --cache .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest"
},
"dependencies": {
"ccommand": "^1.1.7",
"fast-glob": "^3.3.3",
"lazy-js-utils": "^0.1.51",
"ora": "^8.2.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@types/node": "^22.19.10",
"bumpp": "^10.4.1",
"eslint": "^9.39.2",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint . --fix"
}
}