-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.19 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.19 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
{
"name": "revola",
"displayName": "Revola",
"version": "0.1.0",
"description": "Universal release automation",
"keywords": [
"release",
"release-automation",
"versioning",
"git",
"git-tag",
"npm-publish",
"jsr",
"deno",
"package-publish",
"cli",
"automation",
"ci"
],
"homepage": "https://revola-docs.vercel.app",
"repository": "git+https://github.com/teneplaysofficial/revola.git",
"bugs": "https://github.com/teneplaysofficial/revola/issues",
"funding": "https://github.com/sponsors/teneplaysofficial",
"license": "Apache-2.0",
"author": "Sriman",
"private": false,
"publishConfig": {
"access": "public",
"provenance": false
},
"packageManager": "pnpm@10.33.0",
"files": [
"dist",
"templates",
"schema.json"
],
"type": "module",
"bin": {
"revola": "dist/cli.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsdown",
"build:schema": "jiti scripts/schema.ts",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "biome check",
"lint:fix": "biome check --write",
"prepare": "husky",
"prepublishOnly": "pnpm run test && pnpm build:schema --cdn && pnpm run build",
"test": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"arglet": "^1.1.0",
"echo-banner": "^0.3.0",
"handlebars": "^4.7.8",
"inquirer": "^13.4.1",
"jiti": "^2.6.1",
"js-utils-kit": "^4.0.0",
"semver": "^7.7.4",
"use-colors": "^0.1.0",
"use-git": "^1.0.1",
"zod": "^4.3.6",
"zylog": "^0.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@tenedev/prettier-config": "^1.3.0",
"@tenedev/tsconfig": "^0.0.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "4.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"tsdown": "^0.21.8",
"typescript": "^6.0.0",
"vitest": "^4.1.4"
},
"prettier": "@tenedev/prettier-config",
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,ts}": "pnpm run lint:fix"
}
}