@freightos/freightwind 2.1.2 → 2.1.4

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 CHANGED
@@ -1,102 +1,104 @@
1
- {
2
- "name": "@freightos/freightwind",
3
- "version": "2.1.2",
4
- "private": false,
5
- "description": "FreightWind Design System — icons, constants, and utilities for Freightos applications",
6
- "main": "./dist/cjs/index.js",
7
- "module": "./dist/esm/index.js",
8
- "types": "./dist/types/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/types/index.d.ts",
12
- "import": "./dist/esm/index.js",
13
- "require": "./dist/cjs/index.js"
14
- },
15
- "./icons": {
16
- "types": "./dist/types/icons/index.d.ts",
17
- "import": "./dist/esm/icons/index.js",
18
- "require": "./dist/cjs/icons/index.js"
19
- },
20
- "./constants": {
21
- "types": "./dist/types/constants/index.d.ts",
22
- "import": "./dist/esm/constants/index.js",
23
- "require": "./dist/cjs/constants/index.js"
24
- },
25
- "./tokens.css": "./tokens.css",
26
- "./package.json": "./package.json"
27
- },
28
- "typesVersions": {
29
- "*": {
30
- "icons": [
31
- "./dist/types/icons/index.d.ts"
32
- ],
33
- "constants": [
34
- "./dist/types/constants/index.d.ts"
35
- ]
36
- }
37
- },
38
- "files": [
39
- "dist",
40
- "tokens.css",
41
- "guidelines",
42
- "README.md",
43
- "LICENSE"
44
- ],
45
- "sideEffects": [
46
- "*.css"
47
- ],
48
- "scripts": {
49
- "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
50
- "build:esm": "tsc --project tsconfig.esm.json",
51
- "build:cjs": "tsc --project tsconfig.cjs.json",
52
- "build:types": "tsc --project tsconfig.types.json",
53
- "clean": "rm -rf dist",
54
- "sync": "bash scripts/sync.sh",
55
- "fetch-icons": "node scripts/fetch-figma-icons.js",
56
- "generate": "node scripts/generate-icons.js",
57
- "prepublishOnly": "npm run build",
58
- "release:patch": "npm version patch && npm publish --access public && git push --follow-tags",
59
- "release:minor": "npm version minor && npm publish --access public && git push --follow-tags",
60
- "release:major": "npm version major && npm publish --access public && git push --follow-tags",
61
- "publish:dry": "npm publish --dry-run --access public"
62
- },
63
- "keywords": [
64
- "design-system",
65
- "react",
66
- "components",
67
- "icons",
68
- "freightos",
69
- "freightwind",
70
- "ui",
71
- "typescript",
72
- "tailwindcss"
73
- ],
74
- "author": "Jiries Nasrawi <jiries@freightos.com>",
75
- "license": "MIT",
76
- "repository": {
77
- "type": "git",
78
- "url": "https://Jeries_Nasrawi@bitbucket.org/freightos/freightwind.git"
79
- },
80
- "devDependencies": {
81
- "@types/node": "^20.10.0",
82
- "@types/react": "^19",
83
- "@types/react-dom": "^19",
84
- "typescript": "^5.3.3"
85
- },
86
- "peerDependencies": {
87
- "react": ">=18",
88
- "react-dom": ">=18"
89
- },
90
- "peerDependenciesMeta": {
91
- "react": {
92
- "optional": false
93
- },
94
- "react-dom": {
95
- "optional": false
96
- }
97
- },
98
- "dependencies": {
99
- "clsx": "^2.1.1",
100
- "tailwind-merge": "^3.4.0"
101
- }
102
- }
1
+ {
2
+ "name": "@freightos/freightwind",
3
+ "version": "2.1.4",
4
+ "private": false,
5
+ "description": "FreightWind Design System — icons, constants, and utilities for Freightos applications",
6
+ "main": "./dist/cjs/index.js",
7
+ "module": "./dist/esm/index.js",
8
+ "types": "./dist/types/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/types/index.d.ts",
12
+ "import": "./dist/esm/index.js",
13
+ "require": "./dist/cjs/index.js"
14
+ },
15
+ "./icons": {
16
+ "types": "./dist/types/icons/index.d.ts",
17
+ "import": "./dist/esm/icons/index.js",
18
+ "require": "./dist/cjs/icons/index.js"
19
+ },
20
+ "./constants": {
21
+ "types": "./dist/types/constants/index.d.ts",
22
+ "import": "./dist/esm/constants/index.js",
23
+ "require": "./dist/cjs/constants/index.js"
24
+ },
25
+ "./tokens.css": "./tokens.css",
26
+ "./package.json": "./package.json"
27
+ },
28
+ "typesVersions": {
29
+ "*": {
30
+ "icons": [
31
+ "./dist/types/icons/index.d.ts"
32
+ ],
33
+ "constants": [
34
+ "./dist/types/constants/index.d.ts"
35
+ ]
36
+ }
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "tokens.css",
41
+ "guidelines",
42
+ "README.md",
43
+ "LICENSE"
44
+ ],
45
+ "sideEffects": [
46
+ "*.css"
47
+ ],
48
+ "scripts": {
49
+ "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
50
+ "build:esm": "tsc --project tsconfig.esm.json",
51
+ "build:cjs": "tsc --project tsconfig.cjs.json",
52
+ "build:types": "tsc --project tsconfig.types.json",
53
+ "clean": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true})\"",
54
+ "sync": "bash scripts/sync.sh",
55
+ "fetch-icons": "node scripts/fetch-figma-icons.js",
56
+ "generate": "node scripts/generate-icons.js",
57
+ "prepublishOnly": "npm run build",
58
+ "release:patch": "npm version patch && npm publish --access public && git push --follow-tags",
59
+ "release:minor": "npm version minor && npm publish --access public && git push --follow-tags",
60
+ "release:major": "npm version major && npm publish --access public && git push --follow-tags",
61
+ "publish:dry": "npm publish --dry-run --access public"
62
+ },
63
+ "keywords": [
64
+ "design-system",
65
+ "react",
66
+ "components",
67
+ "icons",
68
+ "freightos",
69
+ "freightwind",
70
+ "ui",
71
+ "typescript",
72
+ "tailwindcss"
73
+ ],
74
+ "author": "Jiries Nasrawi <jiries@freightos.com>",
75
+ "license": "MIT",
76
+ "repository": {
77
+ "type": "git",
78
+ "url": "https://Jeries_Nasrawi@bitbucket.org/freightos/freightwind.git"
79
+ },
80
+ "devDependencies": {
81
+ "@types/node": "^20.10.0",
82
+ "@types/react": "^19",
83
+ "@types/react-dom": "^19",
84
+ "typescript": "^5.3.3"
85
+ },
86
+ "peerDependencies": {
87
+ "react": ">=18",
88
+ "react-dom": ">=18"
89
+ },
90
+ "peerDependenciesMeta": {
91
+ "react": {
92
+ "optional": false
93
+ },
94
+ "react-dom": {
95
+ "optional": false
96
+ }
97
+ },
98
+ "dependencies": {
99
+ "@radix-ui/react-direction": "^1.1.0",
100
+ "class-variance-authority": "^0.7.1",
101
+ "clsx": "^2.1.1",
102
+ "tailwind-merge": "^3.4.0"
103
+ }
104
+ }