This repository was archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.53 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.53 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
{
"name": "create-akiradocs",
"version": "1.0.56",
"description": "Create Akira Docs documentation sites with one command",
"main": "./dist/index.js",
"type": "module",
"bin": {
"create-akiradocs": "./dist/index.js",
"update-akiradocs": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"version": "npm run build"
},
"files": [
"dist",
"template",
"editor",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Cloud-Code-AI/akiradocs"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"documentation",
"docs",
"nextjs",
"ai",
"template"
],
"author": "Saurav Panda",
"license": "MIT",
"dependencies": {
"cac": "^6.7.14",
"chalk": "^5.3.0",
"enquirer": "^2.4.1",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"tsup": "^8.0.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"exports": {
".": {
"import": "./dist/index.js"
}
}
}