-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 997 Bytes
/
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
{
"name": "lgrm",
"version": "0.0.1",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"lgrm": "./bin/cli.js"
},
"engines": {
"node": ">=20"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib build --watch",
"format": "biome format --write",
"test": "vitest run",
"prepublishOnly": "rm -rf dist && pnpm run build"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@rslib/core": "^0.1.4",
"@types/node": "^22.10.2",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}