-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 2.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@dimerapp/docs-theme",
"version": "6.1.3",
"description": "Documentation theme built on top of Dimer and used by AdonisJS",
"type": "module",
"main": "build/index.js",
"files": [
"build/css",
"build/js",
"build/templates",
"build/index.d.ts",
"build/index.js"
],
"engines": {
"node": ">=18.16.0"
},
"exports": {
".": "./build/index.js",
"./types": "./build/src/types.js",
"./styles": "./build/css/main.css",
"./scripts": "./build/js/main.js"
},
"scripts": {
"pretest": "npm run lint",
"test": "echo 'No tests'",
"clean": "del-cli build",
"copy:assets": "copyfiles \"templates/**/*\" \"css/**/*\" \"js/**/*\" build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:assets",
"build": "npm run compile",
"release": "np",
"version": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"sync-labels": "github-label-sync --labels .github/labels.json dimerapp/docs-theme"
},
"keywords": [],
"author": "virk,dimerapp",
"license": "MIT",
"devDependencies": {
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@alpinejs/persist": "^3.13.8",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@dimerapp/edge": "^5.0.0",
"@radix-ui/colors": "^3.0.0",
"@swc/core": "^1.4.11",
"@types/node": "^20.12.3",
"alpinejs": "^3.13.8",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"edge-uikit": "^1.0.0-1",
"edge.js": "^6.0.2",
"eslint": "^8.57.0",
"github-label-sync": "^2.2.0",
"husky": "^9.0.11",
"np": "^10.0.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"@dimerapp/edge": "^5.0.0",
"@radix-ui/colors": "^3.0.0",
"edge.js": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimerapp/docs-theme.git"
},
"bugs": {
"url": "https://github.com/dimerapp/docs-theme/issues"
},
"homepage": "https://github.com/dimerapp/docs-theme#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config"
}