-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.48 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.48 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@abw/badger-css",
"version": "1.2.6",
"description": "Badger CSS",
"type": "module",
"main": "./dist/badger-css.umd.cjs",
"module": "./dist/badger-css.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/badger-css.js",
"require": "./dist/badger-css.umd.cjs"
},
"./config/*": "./dist/config/*",
"./styles/*": "./dist/styles/*"
},
"bin": {
"badger-css-palette-scss": "./dist/bin/badger-css-palette-scss.js"
},
"author": "Andy Wardley",
"license": "ISC",
"keywords": [
"react"
],
"scripts": {
"dev": "vite --config vite.docs.js",
"test": "vitest --ui --coverage",
"build:palette": "bin/badger-css-palette-scss.js -c config/export-palette-scss.yaml -v",
"build:scss": "bin/build-css.sh",
"build:vite": "vite build",
"build:docs": "vite build --config vite.docs.js",
"build": "$npm_execpath build:palette && $npm_execpath build:scss && $npm_execpath build:vite && $npm_execpath build:docs",
"preview": "vite preview --config vite.docs.js",
"lint": "eslint 'website/**/*.{js,jsx}' 'lib/**/*.{js,jsx}'"
},
"homepage": "https://abw.github.io/badger-css",
"repository": {
"type": "git",
"url": "git+https://github.com/abw/badger-css.git"
},
"bugs": {
"url": "https://github.com/abw/badger-css/issues"
},
"dependencies": {
"@abw/badger": "^1.2.4"
},
"devDependencies": {
"@abw/badger-color": "^0.0.9",
"@abw/badger-filesystem": "^1.0.6",
"@abw/badger-react-ui": "^1.3.3",
"@abw/badger-timestamp": "^1.0.5",
"@abw/badger-utils": "^1.0.25",
"@abw/badger-website": "^0.2.5",
"@abw/react-context": "^2.0.4",
"@abw/react-night-and-day": "^0.0.5",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.1",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.5.3",
"@vitest/ui": "^1.5.3",
"chroma-js": "^2.4.2",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"jsdom": "^21.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.12.1",
"react-shadow": "^20.3.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-mdx-code-props": "^3.0.1",
"rollup-plugin-copy": "^3.4.0",
"sass": "^1.77.8",
"vite": "^5.4.2",
"vite-jsconfig-paths": "^2.0.1",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.5.3"
}
}