@mysetup/typography 2.0.9 → 2.0.12
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 +68 -69
package/package.json
CHANGED
|
@@ -1,71 +1,70 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
"name": "@mysetup/typography",
|
|
3
|
+
"version": "2.0.12",
|
|
4
|
+
"description": "React typography components and CSS styles for UI applications.",
|
|
5
|
+
"author": "krishnaraj <krishnaraj.webdev@gmail.com>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"react",
|
|
9
|
+
"typography",
|
|
10
|
+
"components",
|
|
11
|
+
"css",
|
|
12
|
+
"typescript"
|
|
13
|
+
],
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"main": "dist/index.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"sideEffects": [
|
|
20
|
+
"./dist/styles.css"
|
|
21
|
+
],
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"README.md"
|
|
25
|
+
],
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"require": "./dist/index.js"
|
|
16
31
|
},
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"@testing-library/react": "^16.2.0",
|
|
57
|
-
"@types/jest": "^29.5.14",
|
|
58
|
-
"@types/jest-axe": "^3.5.9",
|
|
59
|
-
"@types/react": "^18.3.1",
|
|
60
|
-
"jest": "^29.7.0",
|
|
61
|
-
"jest-axe": "^9.0.0",
|
|
62
|
-
"react": "^18.3.1",
|
|
63
|
-
"react-dom": "^18.3.1",
|
|
64
|
-
"typescript": "5.5.4"
|
|
65
|
-
},
|
|
66
|
-
"prettier": "@mysetup/prettier-config",
|
|
67
|
-
"engines": {
|
|
68
|
-
"node": ">=20.15.1"
|
|
69
|
-
},
|
|
70
|
-
"packageManager": "pnpm@9.9.0"
|
|
71
|
-
}
|
|
32
|
+
"./styles.css": "./dist/styles.css",
|
|
33
|
+
"./package.json": "./package.json"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@mysetup/classnames": "2.0.9"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"react": "^18.3.1 || ^19.0.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@mysetup/eslint-config": "2.0.10",
|
|
43
|
+
"@mysetup/jest-config": "2.0.9",
|
|
44
|
+
"@mysetup/prettier-config": "2.0.9",
|
|
45
|
+
"@mysetup/tsconfig": "2.0.9",
|
|
46
|
+
"@testing-library/react": "^16.2.0",
|
|
47
|
+
"@types/jest": "^29.5.14",
|
|
48
|
+
"@types/jest-axe": "^3.5.9",
|
|
49
|
+
"@types/react": "^18.3.1",
|
|
50
|
+
"jest": "^29.7.0",
|
|
51
|
+
"jest-axe": "^9.0.0",
|
|
52
|
+
"react": "^18.3.1",
|
|
53
|
+
"react-dom": "^18.3.1",
|
|
54
|
+
"typescript": "5.5.4"
|
|
55
|
+
},
|
|
56
|
+
"prettier": "@mysetup/prettier-config",
|
|
57
|
+
"engines": {
|
|
58
|
+
"node": ">=20.15.1"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "node ../scripts/package-fs.cjs remove dist && tsc -p tsconfig.build.json && node ../scripts/package-fs.cjs ensure-leading-text dist/index.js \"\\\"use client\\\";\" && node ../scripts/package-fs.cjs copy-file styles.css dist/styles.css",
|
|
62
|
+
"lint": "node ../scripts/run-eslint.cjs .",
|
|
63
|
+
"typecheck": "tsc --noEmit",
|
|
64
|
+
"test": "jest",
|
|
65
|
+
"test:coverage": "jest --coverage",
|
|
66
|
+
"format": "prettier --write \"**/*.{ts,tsx,md,js,mjs,json}\"",
|
|
67
|
+
"checks": "pnpm typecheck && pnpm lint && pnpm test && pnpm build",
|
|
68
|
+
"clean": "node ../scripts/package-fs.cjs remove node_modules .swc dist pnpm-lock.yaml && echo \"Cleaned\""
|
|
69
|
+
}
|
|
70
|
+
}
|