-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.49 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
{
"name": "@redrockfe/rrfe-cli",
"version": "0.8.5",
"description": "cli for redrockfe",
"main": "index.js",
"scripts": {
"start": "tsup --watch",
"build": "tsup --minify",
"lint": "eslint src --ext .js,.ts --fix",
"prepare": "husky install",
"changeset": "changeset",
"prepublish": "pnpm build",
"publish": "changeset publish",
"version:changeset": "changeset version"
},
"bin": {
"rrfe": "bin/index.js"
},
"keywords": [
"redrockfe",
"cli",
"template",
"frontend"
],
"author": {
"name": "sunsunmonkey"
},
"contributors": [
{
"name": "YYGod",
"url": "https://github.com/johanjordaan"
},
{
"name": "sunsunmonkey",
"url": "https://github.com/sunsunmonkey"
}
],
"private": false,
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.0",
"@types/prompts": "^2.4.8",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"cac": "^6.7.14",
"eslint": "^8",
"husky": "^8.0.3",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedrockTeam/rrfe-cli"
},
"bugs": {
"url": "https://github.com/RedrockTeam/rrfe-cli/issues"
},
"homepage": "https://github.com/RedrockTeam/rrfe-cli#readme",
"files": [
"package.json",
"bin",
"build",
"template"
]
}