@yahoo/uds 0.1.9 → 0.1.11

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 +54 -56
package/bin/uds CHANGED
Binary file
package/package.json CHANGED
@@ -1,60 +1,71 @@
1
1
  {
2
2
  "name": "@yahoo/uds",
3
- "version": "0.1.9",
4
- "description": "Yahoo Universal System",
3
+ "version": "0.1.11",
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
+ "scripts": {
27
+ "build": "bun run build:fontcss && tsup",
28
+ "build:cli": "bun run ./scripts/buildCli.ts",
29
+ "build:css": "tailwindcss --input ./src/tailwind/uds.css --output ./generated/uds.css --config ./src/tailwind/tailwind.config.ts",
30
+ "build:fontcss": "tsx ./scripts/generateFontCSS.ts --output ./generated/fonts.css",
31
+ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
32
+ "dev": "concurrently bun:dev:*",
33
+ "dev:cli": "bun run ./scripts/buildCli.ts --watch",
34
+ "dev:fontcss": "tsx watch --clear-screen=false ./scripts/generateFontCSS.ts --output ./generated/fonts.css",
35
+ "dev:ts": "tsup --watch",
36
+ "lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs .",
37
+ "test": "vitest run",
38
+ "test:coverage": "vitest run --coverage",
39
+ "test:ui": "vitest --ui --coverage",
40
+ "test:watch": "vitest",
41
+ "typecheck": "concurrently bun:typecheck:*",
42
+ "typecheck:cli": "tsc -p ./cli --noEmit",
43
+ "typecheck:scripts": "tsc -p ./scripts --noEmit",
44
+ "typecheck:uds": "tsc -p . --noEmit"
45
+ },
46
+ "dependencies": {
47
+ "@ariakit/react": "^0.4.0",
48
+ "@yahoo/uds-fixtures": "workspace:*",
49
+ "@yahoo/uds-tokens": "workspace:*",
50
+ "clsx": "^2.1.0",
51
+ "react-toastify": "^9.1.3",
52
+ "tailwind-merge": "^2.2.1",
53
+ "tailwindcss": "^3.4.1"
54
+ },
34
55
  "devDependencies": {
35
- "@types/react": "^18.2.42",
36
- "@types/react-dom": "^18.2.17",
56
+ "@types/react": "^18.2.48",
57
+ "@types/react-dom": "^18.2.18",
37
58
  "bluebun": "0.0.34",
38
59
  "concurrently": "^8.2.2",
60
+ "database": "workspace:*",
61
+ "eslint-config-custom": "workspace:*",
39
62
  "react": "^18.2.0",
40
63
  "react-dom": "^18.2.0",
64
+ "shared": "workspace:*",
65
+ "tsconfig": "workspace:*",
41
66
  "tsup": "^8.0.1",
42
- "tsx": "^4.6.2",
43
- "typescript": "^5.3.3",
44
- "zx": "^7.2.3",
45
- "database": "0.0.2",
46
- "eslint-config-custom": "0.0.7",
47
- "shared": "0.0.3",
48
- "tsconfig": "0.0.1"
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"
67
+ "tsx": "^4.7.0",
68
+ "typescript": "^5.3.3"
58
69
  },
59
70
  "peerDependencies": {
60
71
  "@gorhom/bottom-sheet": "4.5.1",
@@ -64,24 +75,11 @@
64
75
  "react-native": "^0.72.6",
65
76
  "react-native-safe-area-context": "4.6.3"
66
77
  },
67
- "scripts": {
68
- "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
- "build:cli": "bun run ./scripts/buildCli.ts",
72
- "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
- "dev:cli": "bun run ./scripts/buildCli.ts --watch",
76
- "lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs .",
77
- "test": "vitest run",
78
- "test:watch": "vitest",
79
- "test:coverage": "vitest run --coverage",
80
- "test:ui": "vitest --ui --coverage",
81
- "typecheck": "concurrently pnpm:typecheck:*",
82
- "typecheck:uds": "tsc -p . --noEmit",
83
- "typecheck:cli": "tsc -p ./cli --noEmit",
84
- "typecheck:scripts": "tsc -p ./scripts --noEmit",
85
- "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
86
- }
87
- }
78
+ "bin": {
79
+ "uds": "./bin/uds"
80
+ },
81
+ "description": "Yahoo Universal System",
82
+ "main": "./dist/index.cjs",
83
+ "module": "./dist/index.js",
84
+ "types": "./dist/index.d.ts"
85
+ }