This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.22 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
106
107
108
109
110
111
112
{
"name": "@wpmudev/sui-css",
"description": "SUI CSS Framework, the WPMU DEV Products styles library.",
"version": "1.0.0",
"license": "GPL-2.0",
"keywords": [
"incsub",
"wpmudev",
"shared-ui",
"css",
"scss",
"css-framework"
],
"author": "WPMU DEV (https://wpmudev.com)",
"contributors": [
{
"name": "Leighton Sapir",
"email": "2328848+iamleigh@users.noreply.github.com",
"url": "https://iamleigh.com"
}
],
"input": "./src",
"output": "./dist",
"directories": {
"src": "src"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpmudev/sui-css.git"
},
"scripts": {
"format-files": "clear && yarn prettier --write .",
"storybook": "start-storybook -p 6007",
"build-storybook": "build-storybook",
"changelog": "npx lerna-changelog",
"clean": "clear && git restore .",
"tokens": "style-dictionary build",
"build": "yarn tokens && gulp",
"prepare": "yarn clean && gulp",
"publish:test": "yarn prepare && npm version prerelease --git-tag-version=false && npm pack",
"publish:patch": "yarn prepare && npm version patch -m \"📦️ SUI CSS Framework %s\" && npm publish",
"publish:minor": "yarn prepare && npm version minor -m \"📦️ SUI CSS Framework %s\" && npm publish",
"publish:major": "yarn prepare && npm version major -m \"📦️ SUI CSS Framework %s\" && npm publish"
},
"bugs": {
"url": "https://incsub.atlassian.net/browse/SUI"
},
"homepage": "https://github.com/wpmudev/sui-css#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-postcss": "2.0.0",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@wordpress/stylelint-config": "^20.0.2",
"@wpmudev/storybook": "^0.0.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"dedent": "^0.7.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-header": "^2.0.9",
"gulp-prettier": "^4.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"path": "^0.12.7",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"style-dictionary": "^3.7.1",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1"
},
"resolutions": {
"glob-parent": "^6.0.1",
"parse-path": "^5.0.0",
"parse-url": "^8.1.0",
"trim": "^0.0.3",
"trim-newlines": "^3.0.1"
},
"changelog": {
"repo": "wpmudev/sui-css",
"labels": {
"breaking": "💥 Breaking Change",
"new": "✨ New Feature",
"improvement": "🚀 Improvement",
"bug": "🐛 Bug Fix",
"accessibility": "♿️ Accessibility",
"documentation": "📝 Documentation",
"internal": "🏠 Internal"
}
}
}