@yahoo/uds 0.1.9 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/bin/uds +0 -0
  2. package/package.json +37 -39
package/bin/uds CHANGED
Binary file
package/package.json CHANGED
@@ -1,61 +1,52 @@
1
1
  {
2
2
  "name": "@yahoo/uds",
3
- "version": "0.1.9",
4
- "description": "Yahoo Universal System",
3
+ "version": "0.1.10",
5
4
  "type": "module",
6
- "main": "./dist/index.cjs",
7
- "module": "./dist/index.js",
8
- "types": "./dist/index.d.ts",
9
5
  "sideEffects": false,
10
- "bin": {
11
- "uds": "./bin/uds"
12
- },
6
+ "files": [
7
+ "dist/**",
8
+ "package.json"
9
+ ],
13
10
  "exports": {
14
11
  ".": {
15
12
  "types": "./dist/index.d.ts",
16
13
  "import": "./dist/index.js",
17
- "module": "./dist/index.js",
18
- "require": "./dist/index.cjs"
14
+ "require": "./dist/index.cjs",
15
+ "module": "./dist/index.js"
19
16
  },
20
17
  "./tailwindPlugin": {
21
18
  "types": "./dist/tailwindPlugin.d.ts",
22
19
  "import": "./dist/tailwindPlugin.js",
23
- "module": "./dist/tailwindPlugin.js",
24
- "require": "./dist/tailwindPlugin.cjs"
20
+ "require": "./dist/tailwindPlugin.cjs",
21
+ "module": "./dist/tailwindPlugin.js"
25
22
  },
26
23
  "./styles/*": "./dist/styles/*",
27
24
  "./package.json": "./package.json"
28
25
  },
29
- "files": [
30
- "bin/**",
31
- "dist/**",
32
- "package.json"
33
- ],
26
+ "dependencies": {
27
+ "@ariakit/react": "^0.4.0",
28
+ "clsx": "^2.1.0",
29
+ "react-toastify": "^9.1.3",
30
+ "tailwind-merge": "^2.2.1",
31
+ "tailwindcss": "^3.4.1",
32
+ "@yahoo/uds-fixtures": "0.0.3",
33
+ "@yahoo/uds-tokens": "0.0.3"
34
+ },
34
35
  "devDependencies": {
35
- "@types/react": "^18.2.42",
36
- "@types/react-dom": "^18.2.17",
36
+ "@types/react": "^18.2.48",
37
+ "@types/react-dom": "^18.2.18",
37
38
  "bluebun": "0.0.34",
38
39
  "concurrently": "^8.2.2",
39
40
  "react": "^18.2.0",
40
41
  "react-dom": "^18.2.0",
41
42
  "tsup": "^8.0.1",
42
- "tsx": "^4.6.2",
43
+ "tsx": "^4.7.0",
43
44
  "typescript": "^5.3.3",
44
- "zx": "^7.2.3",
45
- "database": "0.0.2",
46
- "eslint-config-custom": "0.0.7",
45
+ "database": "0.0.3",
46
+ "eslint-config-custom": "0.0.8",
47
47
  "shared": "0.0.3",
48
48
  "tsconfig": "0.0.1"
49
49
  },
50
- "dependencies": {
51
- "@ariakit/react": "^0.3.5",
52
- "clsx": "^2.0.0",
53
- "react-toastify": "^9.1.3",
54
- "tailwind-merge": "^2.1.0",
55
- "tailwindcss": "^3.3.6",
56
- "@yahoo/uds-fixtures": "0.0.2",
57
- "@yahoo/uds-tokens": "0.0.2"
58
- },
59
50
  "peerDependencies": {
60
51
  "@gorhom/bottom-sheet": "4.5.1",
61
52
  "expo-constants": "~14.4.2",
@@ -64,24 +55,31 @@
64
55
  "react-native": "^0.72.6",
65
56
  "react-native-safe-area-context": "4.6.3"
66
57
  },
58
+ "bin": {
59
+ "uds": "./bin/uds"
60
+ },
61
+ "description": "Yahoo Universal System",
62
+ "main": "./dist/index.cjs",
63
+ "module": "./dist/index.js",
64
+ "types": "./dist/index.d.ts",
67
65
  "scripts": {
68
66
  "build": "pnpm build:fontcss && tsup",
69
- "build:fontcss": "tsx ./scripts/generateFontCSS.ts --output ./generated/fonts.css",
70
- "build:css": "tailwindcss --input ./src/tailwind/uds.css --output ./generated/uds.css --config ./src/tailwind/tailwind.config.ts",
71
67
  "build:cli": "bun run ./scripts/buildCli.ts",
68
+ "build:css": "tailwindcss --input ./src/tailwind/uds.css --output ./generated/uds.css --config ./src/tailwind/tailwind.config.ts",
69
+ "build:fontcss": "tsx ./scripts/generateFontCSS.ts --output ./generated/fonts.css",
70
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
72
71
  "dev": "concurrently pnpm:dev:*",
73
- "dev:ts": "tsup --watch",
74
- "dev:fontcss": "tsx watch --clear-screen=false ./scripts/generateFontCSS.ts --output ./generated/fonts.css",
75
72
  "dev:cli": "bun run ./scripts/buildCli.ts --watch",
73
+ "dev:fontcss": "tsx watch --clear-screen=false ./scripts/generateFontCSS.ts --output ./generated/fonts.css",
74
+ "dev:ts": "tsup --watch",
76
75
  "lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs .",
77
76
  "test": "vitest run",
78
- "test:watch": "vitest",
79
77
  "test:coverage": "vitest run --coverage",
80
78
  "test:ui": "vitest --ui --coverage",
79
+ "test:watch": "vitest",
81
80
  "typecheck": "concurrently pnpm:typecheck:*",
82
- "typecheck:uds": "tsc -p . --noEmit",
83
81
  "typecheck:cli": "tsc -p ./cli --noEmit",
84
82
  "typecheck:scripts": "tsc -p ./scripts --noEmit",
85
- "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
83
+ "typecheck:uds": "tsc -p . --noEmit"
86
84
  }
87
85
  }