@crowdstrike/tailwind-toucan-base 3.0.5 → 3.1.0
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/package.json +29 -13
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@crowdstrike/tailwind-toucan-base",
|
3
|
-
"version": "3.0
|
3
|
+
"version": "3.1.0",
|
4
4
|
"private": false,
|
5
5
|
"description": "Tailwind preset for CrowdStrike's Toucan design system",
|
6
6
|
"repository": "https://github.com/CrowdStrike/tailwind-toucan-base",
|
@@ -11,12 +11,28 @@
|
|
11
11
|
"index.js",
|
12
12
|
"index.css",
|
13
13
|
"themes.json",
|
14
|
+
"theme-data.js",
|
15
|
+
"theme-data.d.ts",
|
14
16
|
"toucan.css",
|
15
17
|
"plugins/**/*.js"
|
16
18
|
],
|
19
|
+
"exports": {
|
20
|
+
".": "./index.js",
|
21
|
+
"./themes": "./themes.json",
|
22
|
+
"./themes.json": "./themes.json",
|
23
|
+
"./theme-data": "./theme-data.js"
|
24
|
+
},
|
25
|
+
"typesVersions": {
|
26
|
+
"*": {
|
27
|
+
"theme-data": [
|
28
|
+
"./theme-data.d.ts"
|
29
|
+
]
|
30
|
+
}
|
31
|
+
},
|
17
32
|
"scripts": {
|
18
33
|
"start": "pnpm run build && npx http-server ./dist",
|
19
|
-
"build": "npm-run-all clean build:cdn build:alias build:preview",
|
34
|
+
"build": "npm-run-all clean build:cdn build:alias build:preview build:theme-data",
|
35
|
+
"build:theme-data": "node ./lib/build-theme-data.mjs",
|
20
36
|
"build:preview": "node ./lib/build-preview.mjs",
|
21
37
|
"build:cdn": "NODE_ENV=production tailwind build -i ./lib/index.css -o ./index.css -c ./lib/tailwind.config.cdn.js",
|
22
38
|
"clean": "rm -f ./toucan.css ./index.css",
|
@@ -30,24 +46,24 @@
|
|
30
46
|
"tailwindcss": "^2.2.15"
|
31
47
|
},
|
32
48
|
"devDependencies": {
|
33
|
-
"@figma-export/cli": "
|
34
|
-
"@nullvoxpopuli/eslint-configs": "2.2.
|
49
|
+
"@figma-export/cli": "4.4.0",
|
50
|
+
"@nullvoxpopuli/eslint-configs": "2.2.22",
|
35
51
|
"@semantic-release/changelog": "^6.0.1",
|
36
52
|
"@semantic-release/git": "^10.0.1",
|
37
53
|
"@types/fs-extra": "^9.0.13",
|
38
54
|
"autoprefixer": "^10.4.7",
|
39
55
|
"c8": "^7.11.3",
|
40
56
|
"common-tags": "^1.8.2",
|
41
|
-
"eslint": "^8.
|
57
|
+
"eslint": "^8.17.0",
|
42
58
|
"execa": "^6.1.0",
|
43
59
|
"fs-extra": "^10.1.0",
|
44
60
|
"npm-run-all": "^4.1.5",
|
45
|
-
"pnpm": "^7.1.
|
61
|
+
"pnpm": "^7.1.9",
|
46
62
|
"postcss": "^8.4.14",
|
47
63
|
"semantic-release": "^19.0.2",
|
48
|
-
"tailwind-config-viewer": "^1.7.
|
49
|
-
"typescript": "^4.7.
|
50
|
-
"vitest": "0.
|
64
|
+
"tailwind-config-viewer": "^1.7.1",
|
65
|
+
"typescript": "^4.7.3",
|
66
|
+
"vitest": "0.14.1"
|
51
67
|
},
|
52
68
|
"engines": {
|
53
69
|
"node": ">=14.15.0"
|
@@ -69,10 +85,10 @@
|
|
69
85
|
"@semantic-release/git"
|
70
86
|
]
|
71
87
|
},
|
72
|
-
"packageManager": "pnpm@7.1.
|
88
|
+
"packageManager": "pnpm@7.1.9",
|
73
89
|
"volta": {
|
74
|
-
"node": "16.15.
|
75
|
-
"yarn": "1.22.
|
76
|
-
"npm": "8.
|
90
|
+
"node": "16.15.1",
|
91
|
+
"yarn": "1.22.19",
|
92
|
+
"npm": "8.12.1"
|
77
93
|
}
|
78
94
|
}
|