pesona-ui 0.1.1 → 0.1.2
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 +71 -68
package/package.json
CHANGED
|
@@ -1,70 +1,73 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
2
|
+
"name": "pesona-ui",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"main": "./dist/pesona-ui.cjs.js",
|
|
7
|
+
"module": "./dist/pesona-ui.es.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"style": "./dist/pesona-ui.css",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/pesona-ui.es.js",
|
|
16
|
+
"require": "./dist/pesona-ui.cjs.js",
|
|
17
|
+
"default": "./dist/pesona-ui.es.js"
|
|
18
|
+
},
|
|
19
|
+
"./dist/pesona-ui.css": {
|
|
20
|
+
"default": "./dist/pesona-ui.css"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite",
|
|
25
|
+
"build": "vite build",
|
|
26
|
+
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
|
|
27
|
+
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
|
|
28
|
+
"format": "prettier --write 'src/**/*.{js,ts,tsx,scss}'",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"test:watch": "vitest"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@types/uuid": "^10.0.0",
|
|
34
|
+
"html-react-parser": "^5.2.6",
|
|
35
|
+
"react-icons": "^5.5.0",
|
|
36
|
+
"uuid": "^11.1.0"
|
|
37
|
+
},
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"react": ">=18",
|
|
40
|
+
"react-dom": ">=18"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@eslint/js": "^9.30.1",
|
|
44
|
+
"@microsoft/api-extractor": "^7.47.4",
|
|
45
|
+
"@testing-library/dom": "^10.4.1",
|
|
46
|
+
"@testing-library/react": "^16.0.0",
|
|
47
|
+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
48
|
+
"@types/node": "^24.2.0",
|
|
49
|
+
"@types/react": "^19.1.9",
|
|
50
|
+
"@types/react-dom": "^19.1.7",
|
|
51
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
52
|
+
"eslint": "^9.32.0",
|
|
53
|
+
"eslint-config-prettier": "^10.1.8",
|
|
54
|
+
"eslint-plugin-import": "^2.32.0",
|
|
55
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
56
|
+
"eslint-plugin-react": "^7.37.5",
|
|
57
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
58
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
59
|
+
"globals": "^16.3.0",
|
|
60
|
+
"jsdom": "^25.0.0",
|
|
61
|
+
"prettier": "^3.6.2",
|
|
62
|
+
"react": "^19.1.1",
|
|
63
|
+
"react-dom": "^19.1.1",
|
|
64
|
+
"sass": "^1.89.2",
|
|
65
|
+
"typescript": "^5.9.2",
|
|
66
|
+
"typescript-eslint": "^8.35.1",
|
|
67
|
+
"vite": "^7.0.6",
|
|
68
|
+
"vite-plugin-dts": "^4.5.4",
|
|
69
|
+
"vitest": "^2.0.5"
|
|
70
|
+
},
|
|
71
|
+
"license": "MIT",
|
|
72
|
+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
70
73
|
}
|