-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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": "gramoco-cli",
"version": "0.0.3-0",
"private": true,
"description": "Gramoco CLI",
"keywords": [
"cli",
"gramoco"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "alexmarqs",
"license": "MIT",
"bin": {
"gramoco": "dist/index.js"
},
"scripts": {
"dev": "tsx ./src/index.ts",
"clean": "rm -rf dist && rm -rf bin",
"prebuild": "yarn type-check && yarn clean",
"build": "tsup src/index.ts --format cjs --minify --clean --legacy-output --target node16 --out-dir dist",
"package": "pkg .",
"type-check": "tsc --noEmit",
"format": "npx @biomejs/biome format ./src/**/*.ts --write",
"lint": "npx @biomejs/biome lint ./src/**/*.ts",
"test": "vitest run",
"test:e2e": "vitest run --config ./vitest.e2e.config.mts",
"release:tag": "git tag -a v$npm_package_version -m \"v$npm_package_version\"",
"release:push": "git push origin v$npm_package_version",
"release:bump": "npm version patch --no-git-tag-version",
"prerelease:bump": "npm version prerelease --no-git-tag-version"
},
"pkg": {
"scripts": [
"dist/**/*.js"
],
"outputPath": "bin"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.3.3",
"@types/node": "^20.9.2",
"pkg": "^5.8.1",
"tsup": "^8.0.0",
"tsx": "^4.1.4",
"typescript": "^5.2.2",
"vitest": "1.1.0"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"exceljs": "^4.4.0",
"nanospinner": "^1.1.0",
"ofetch": "^1.3.3",
"zod": "3.22.4",
"zod-config": "0.0.5"
}
}