@newtil/materials 0.4.5 → 0.4.6
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/dist/index.css +1 -1
- package/dist/spec.json +3207 -0
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newtil/materials",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"description": "Material Design 3 구현 CSS 라이브러리 — m3- prefix 기반 컴포넌트 (버튼, 카드, 다이얼로그, 네비 등). @newtil/design-tokens 위에 동작.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"./index.css": {
|
|
21
21
|
"default": "./dist/index.css"
|
|
22
22
|
},
|
|
23
|
-
"./package.json": "./package.json"
|
|
23
|
+
"./package.json": "./package.json",
|
|
24
|
+
"./spec.json": "./dist/spec.json"
|
|
24
25
|
},
|
|
25
26
|
"keywords": [
|
|
26
27
|
"css",
|
|
@@ -33,12 +34,13 @@
|
|
|
33
34
|
"author": "lectureteam",
|
|
34
35
|
"license": "MIT",
|
|
35
36
|
"scripts": {
|
|
36
|
-
"build": "rm -rf ./dist && rollup -c",
|
|
37
|
+
"build": "rm -rf ./dist && rollup -c && node scripts/build-spec.mjs",
|
|
37
38
|
"deploy": "npm run build && npm publish",
|
|
38
39
|
"prepublishOnly": "npm run build",
|
|
39
40
|
"docs:dev": "vitepress dev docs --host",
|
|
40
41
|
"docs:build": "vitepress build docs",
|
|
41
|
-
"docs:preview": "vitepress preview docs"
|
|
42
|
+
"docs:preview": "vitepress preview docs",
|
|
43
|
+
"spec": "node scripts/build-spec.mjs"
|
|
42
44
|
},
|
|
43
45
|
"dependencies": {
|
|
44
46
|
"@newtil/design-tokens": "^0.2.1"
|