-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 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
{
"name": "@open-craft/brand-simple-theme",
"version": "0.1.0",
"description": "This is a customisable branding package for Open edX MFEs that provides a number of overridable variables. ",
"scripts": {
"build-tokens": "paragon build-tokens --source ./tokens/ --build-dir ./paragon/css --all-themes --paragon-base-theme light",
"build-scss": "paragon build-scss --corePath ./paragon/core.scss --themesPath ./paragon/css/themes",
"build": "rimraf dist && mkdir dist && npm run build-scss",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-craft/edx-simple-theme.git"
},
"author": "OpenCraft",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/open-craft/edx-simple-theme/issues"
},
"homepage": "https://github.com/open-craft/edx-simple-theme#readme",
"peerDependencies": {
"@openedx/paragon": "^23.4.5"
},
"devDependencies": {
"@openedx/paragon": "^23.16.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "3.6.2",
"rimraf": "^6.1.0"
},
"lint-staged": {
"*.{css,scss}": "prettier --write"
}
}