@yahoo/uds 0.1.10 → 0.1.11
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 +31 -31
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yahoo/uds",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.11",
|
4
4
|
"type": "module",
|
5
5
|
"sideEffects": false,
|
6
6
|
"files": [
|
@@ -23,29 +23,49 @@
|
|
23
23
|
"./styles/*": "./dist/styles/*",
|
24
24
|
"./package.json": "./package.json"
|
25
25
|
},
|
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
|
+
},
|
26
46
|
"dependencies": {
|
27
47
|
"@ariakit/react": "^0.4.0",
|
48
|
+
"@yahoo/uds-fixtures": "workspace:*",
|
49
|
+
"@yahoo/uds-tokens": "workspace:*",
|
28
50
|
"clsx": "^2.1.0",
|
29
51
|
"react-toastify": "^9.1.3",
|
30
52
|
"tailwind-merge": "^2.2.1",
|
31
|
-
"tailwindcss": "^3.4.1"
|
32
|
-
"@yahoo/uds-fixtures": "0.0.3",
|
33
|
-
"@yahoo/uds-tokens": "0.0.3"
|
53
|
+
"tailwindcss": "^3.4.1"
|
34
54
|
},
|
35
55
|
"devDependencies": {
|
36
56
|
"@types/react": "^18.2.48",
|
37
57
|
"@types/react-dom": "^18.2.18",
|
38
58
|
"bluebun": "0.0.34",
|
39
59
|
"concurrently": "^8.2.2",
|
60
|
+
"database": "workspace:*",
|
61
|
+
"eslint-config-custom": "workspace:*",
|
40
62
|
"react": "^18.2.0",
|
41
63
|
"react-dom": "^18.2.0",
|
64
|
+
"shared": "workspace:*",
|
65
|
+
"tsconfig": "workspace:*",
|
42
66
|
"tsup": "^8.0.1",
|
43
67
|
"tsx": "^4.7.0",
|
44
|
-
"typescript": "^5.3.3"
|
45
|
-
"database": "0.0.3",
|
46
|
-
"eslint-config-custom": "0.0.8",
|
47
|
-
"shared": "0.0.3",
|
48
|
-
"tsconfig": "0.0.1"
|
68
|
+
"typescript": "^5.3.3"
|
49
69
|
},
|
50
70
|
"peerDependencies": {
|
51
71
|
"@gorhom/bottom-sheet": "4.5.1",
|
@@ -61,25 +81,5 @@
|
|
61
81
|
"description": "Yahoo Universal System",
|
62
82
|
"main": "./dist/index.cjs",
|
63
83
|
"module": "./dist/index.js",
|
64
|
-
"types": "./dist/index.d.ts"
|
65
|
-
|
66
|
-
"build": "pnpm build:fontcss && tsup",
|
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",
|
71
|
-
"dev": "concurrently pnpm:dev:*",
|
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",
|
75
|
-
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs .",
|
76
|
-
"test": "vitest run",
|
77
|
-
"test:coverage": "vitest run --coverage",
|
78
|
-
"test:ui": "vitest --ui --coverage",
|
79
|
-
"test:watch": "vitest",
|
80
|
-
"typecheck": "concurrently pnpm:typecheck:*",
|
81
|
-
"typecheck:cli": "tsc -p ./cli --noEmit",
|
82
|
-
"typecheck:scripts": "tsc -p ./scripts --noEmit",
|
83
|
-
"typecheck:uds": "tsc -p . --noEmit"
|
84
|
-
}
|
85
|
-
}
|
84
|
+
"types": "./dist/index.d.ts"
|
85
|
+
}
|