This repository was archived by the owner on Apr 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.58 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
{
"name": "@readme/rdme-plugin-template",
"description": "An example plugin for the rdme CLI.",
"version": "0.0.0",
"author": "ReadMe",
"bin": {
"example-bin": "bin/run.js"
},
"bugs": "https://github.com/readmeio/rdme-plugin-template/issues",
"dependencies": {
"@oclif/core": "^4"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@oclif/test": "^4",
"@readme/standards": "^2.4.0",
"@types/node": "^25.1.0",
"knip": "^6.2.0",
"oclif": "^4.22.73",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.10.0"
},
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"homepage": "https://github.com/readmeio/rdme-plugin-template",
"keywords": [
"rdme",
"readme",
"cli",
"plugin",
"oclif"
],
"license": "MIT",
"type": "module",
"oclif": {
"bin": "example-bin",
"dirname": "example-dirname",
"commands": "./dist/commands",
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"prettier": "@readme/standards/prettier",
"repository": {
"type": "git",
"url": "git+https://github.com/readmeio/rdme-plugin-template.git"
},
"scripts": {
"build": "tsc",
"lint": "npm run lint:ts && npm run prettier && knip",
"lint:ts": "biome check --error-on-warnings",
"prebuild": "rm -rf dist",
"prepack": "oclif manifest",
"prepare": "npm run build",
"prettier": "prettier --check .",
"test": "vitest"
}
}