-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.06 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
{
"name": "specra-cli",
"version": "0.3.2",
"description": "CLI tool to create, deploy, and manage Specra documentation sites",
"type": "module",
"bin": {
"specra": "./dist/cli.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"documentation",
"docs",
"sveltekit",
"svelte",
"mdx",
"specra",
"cli"
],
"author": "dalmasonto, arthur-kamau",
"repository": {
"type": "git",
"url": "https://github.com/SpecraDocs/specra-cli"
},
"homepage": "https://github.com/SpecraDocs",
"license": "SEE LICENSE IN LICENSE.MD",
"dependencies": {
"commander": "^12.1.0",
"open": "^11.0.0",
"ora": "^9.3.0",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"tar": "^7.5.7",
"validate-npm-package-name": "^6.0.0"
},
"devDependencies": {
"@types/node": "^22",
"@types/prompts": "^2.4.9",
"@types/validate-npm-package-name": "^4.0.2",
"tsup": "^8.3.5",
"typescript": "^5"
}
}