-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "growi-plugin-theme-vivid-internet",
"version": "1.2.0",
"description": "GROWI theme plugin that brings vivid internet back to modern times",
"license": "MIT",
"keywords": ["growi", "growi-plugin"],
"main": "dist/libs/index.js",
"files": ["dist"],
"scripts": {
"build": "vite build",
"build:w": "yarn build -w",
"lint:biome": "biome check ./",
"lint:styles": "stylelint src/**/*.scss",
"lint": "run-p lint:*",
"test": "vitest run",
"// preview": "vite preview",
"preview": "echo 'Sorry, not implemented.'"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@growi/core-styles": "^1.0.0",
"@growi/pluginkit": "^1.0.0",
"@types/node": "^20.12.13",
"bootstrap": "^5.3.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"npm-run-all": "^4.1.5",
"sass": "^1.77.2",
"stylelint": "^16.5.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"vite": "^5.2.11",
"vitest": "^1.6.0"
},
"growiPlugin": {
"schemaVersion": "4",
"types": ["theme"],
"themes": [
{
"name": "vivid-internet",
"manifestKey": "src/styles/style.scss",
"schemeType": "light",
"lightBg": "#ff0000",
"darkBg": "#0000ff",
"lightSidebar": "#ffff00",
"darkSidebar": "#ff8800",
"lightIcon": "#ff0000",
"darkIcon": "#000000",
"createBtn": "#00ff00"
}
]
}
}