@new-ui/foundations 0.3.1 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +123 -201
- package/dist/index.css +1862 -1
- package/dist/index.css.map +1 -1
- package/package.json +24 -13
- package/src/index.scss +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-ui/foundations",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "New UI foundations",
|
|
5
5
|
"source": "src/index.scss",
|
|
6
6
|
"main": "dist/index.css",
|
|
@@ -13,13 +13,21 @@
|
|
|
13
13
|
"README.md",
|
|
14
14
|
"LICENSE"
|
|
15
15
|
],
|
|
16
|
+
"workspaces": [
|
|
17
|
+
"packages/*"
|
|
18
|
+
],
|
|
16
19
|
"scripts": {
|
|
17
20
|
"watch": "parcel watch",
|
|
18
|
-
"build": "parcel build"
|
|
21
|
+
"build": "parcel build",
|
|
22
|
+
"lint": "stylelint \"**/*.scss\"",
|
|
23
|
+
"format": "prettier --write .",
|
|
24
|
+
"update:deps": "bunx npm-check-updates --deep --upgrade && bun install",
|
|
25
|
+
"build:packages": "bun run --filter './packages/*' build",
|
|
26
|
+
"clean:install": "rm -rf node_modules bun.lock .parcel-cache packages/*/node_modules packages/*/bun.lock packages/*/.parcel-cache && bun install"
|
|
19
27
|
},
|
|
20
28
|
"repository": {
|
|
21
29
|
"type": "git",
|
|
22
|
-
"url": "git+https://github.com/
|
|
30
|
+
"url": "git+https://github.com/create-new-ui/foundations.git"
|
|
23
31
|
},
|
|
24
32
|
"keywords": [
|
|
25
33
|
"foundations",
|
|
@@ -37,19 +45,22 @@
|
|
|
37
45
|
"author": "@planetabhi",
|
|
38
46
|
"license": "MIT",
|
|
39
47
|
"bugs": {
|
|
40
|
-
"url": "https://github.com/
|
|
48
|
+
"url": "https://github.com/create-new-ui/foundations/issues"
|
|
41
49
|
},
|
|
42
|
-
"homepage": "https://github.com/
|
|
50
|
+
"homepage": "https://github.com/create-new-ui/foundations#readme",
|
|
43
51
|
"devDependencies": {
|
|
44
|
-
"@parcel/transformer-sass": "^2.16.
|
|
45
|
-
"autoprefixer": "^10.4.
|
|
46
|
-
"parcel": "^2.16.
|
|
52
|
+
"@parcel/transformer-sass": "^2.16.3",
|
|
53
|
+
"autoprefixer": "^10.4.23",
|
|
54
|
+
"parcel": "^2.16.3",
|
|
55
|
+
"prettier": "^3.7.4",
|
|
56
|
+
"stylelint": "^16.26.1",
|
|
57
|
+
"stylelint-config-standard-scss": "^16.0.0"
|
|
47
58
|
},
|
|
48
59
|
"dependencies": {
|
|
49
|
-
"@new-ui/colors": "^2.2.
|
|
50
|
-
"@new-ui/effects": "^0.1.
|
|
51
|
-
"@new-ui/reset": "^0.1.
|
|
52
|
-
"@new-ui/spacings": "^0.1.
|
|
53
|
-
"@new-ui/typography": "^0.
|
|
60
|
+
"@new-ui/colors": "^2.2.2",
|
|
61
|
+
"@new-ui/effects": "^0.1.9",
|
|
62
|
+
"@new-ui/reset": "^0.1.1",
|
|
63
|
+
"@new-ui/spacings": "^0.1.8",
|
|
64
|
+
"@new-ui/typography": "^0.2.0"
|
|
54
65
|
}
|
|
55
66
|
}
|
package/src/index.scss
CHANGED