-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "konvergo-docs-theme",
"version": "0.1.0",
"description": "GROWI plugin for the Konvergo theme",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:konvergo-apps/konvergo-docs-theme.git"
},
"main": "dist/libs/index.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build:w": "yarn build -w",
"lint": "stylelint src/**/*.scss",
"lint:apply": "stylelint --fix src/**/*.scss",
"prepare": "husky && git config --local core.editor cat",
"test": "vitest run"
},
"devDependencies": {
"@growi/core-styles": "^1.0.0",
"@growi/pluginkit": "^1.0.0",
"@semantic-release/github": "^10.0.7",
"@types/node": "^20.12.13",
"bootstrap": "^5.3.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"sass": "^1.77.4",
"semantic-release": "^24.0.0",
"stylelint": "^16.6.1",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"vite": "^5.2.13",
"vitest": "^1.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"growiPlugin": {
"schemaVersion": "4",
"types": [
"theme"
],
"themes": [
{
"name": "Konvergo",
"manifestKey": "src/styles/style.scss",
"schemeType": "light",
"lightBg": "#F9E4EB",
"darkBg": "#EC0B4333",
"lightSidebar": "#242930",
"darkSidebar": "#242930",
"lightIcon": "#FAFCFE",
"darkIcon": "#FAFCFE",
"createBtn": "#EC0B43"
}
]
}
}