@prokodo/ui 0.0.4 → 0.0.5
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/README.md +95 -12
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +187 -187
- package/package.json +21 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prokodo/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Modern, customizable UI components built with React and TypeScript — developed by prokodo for high-performance web interfaces.",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
@@ -21,22 +21,6 @@
|
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/prokodo-agency/ui/issues"
|
|
23
23
|
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"dev": "vite",
|
|
26
|
-
"build": "vite build",
|
|
27
|
-
"typecheck": "tsc --project tsconfig.typecheck.json",
|
|
28
|
-
"test": "NODE_ENV=test jest --coverage --verbose",
|
|
29
|
-
"test:watch": "NODE_ENV=test jest --watch",
|
|
30
|
-
"test:ci": "NODE_ENV=test jest --runInBand --ci",
|
|
31
|
-
"lint": "eslint 'src/**/*.{ts,tsx}'",
|
|
32
|
-
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
|
|
33
|
-
"format": "prettier --check .",
|
|
34
|
-
"format:fix": "prettier --write .",
|
|
35
|
-
"storybook": "storybook dev -p 6006",
|
|
36
|
-
"storybook:build": "storybook build && echo 'ui.prokodo.com' > storybook-static/CNAME",
|
|
37
|
-
"storybook:deploy": "gh-pages -d storybook-static",
|
|
38
|
-
"generate-icon-types": "node tools/generate-icon-names.cjs"
|
|
39
|
-
},
|
|
40
24
|
"dependencies": {
|
|
41
25
|
"@googlemaps/js-api-loader": "^1.16.6",
|
|
42
26
|
"@lottiefiles/dotlottie-react": "^0.7.2",
|
|
@@ -58,6 +42,7 @@
|
|
|
58
42
|
"@babel/preset-env": "^7.27.2",
|
|
59
43
|
"@babel/preset-react": "^7.27.1",
|
|
60
44
|
"@babel/preset-typescript": "^7.27.1",
|
|
45
|
+
"@changesets/cli": "^2.29.4",
|
|
61
46
|
"@chromatic-com/storybook": "^3",
|
|
62
47
|
"@eslint/compat": "^1.2.0",
|
|
63
48
|
"@jest/globals": "^29.7.0",
|
|
@@ -99,6 +84,7 @@
|
|
|
99
84
|
"gh-pages": "^6.3.0",
|
|
100
85
|
"globals": "^15.8.0",
|
|
101
86
|
"husky": "^9.1.6",
|
|
87
|
+
"identity-obj-proxy": "^3.0.0",
|
|
102
88
|
"jest": "^29.7.0",
|
|
103
89
|
"jest-canvas-mock": "^2.5.2",
|
|
104
90
|
"jest-css-modules": "^2.1.0",
|
|
@@ -137,5 +123,22 @@
|
|
|
137
123
|
"license": "BUSL-1.1",
|
|
138
124
|
"publishConfig": {
|
|
139
125
|
"access": "public"
|
|
126
|
+
},
|
|
127
|
+
"scripts": {
|
|
128
|
+
"dev": "vite",
|
|
129
|
+
"build": "vite build",
|
|
130
|
+
"typecheck": "tsc --project tsconfig.typecheck.json",
|
|
131
|
+
"test": "NODE_ENV=test jest --coverage --verbose && pnpm lint && pnpm typecheck",
|
|
132
|
+
"test:watch": "NODE_ENV=test jest --watch",
|
|
133
|
+
"test:ci": "NODE_ENV=test jest --runInBand --ci",
|
|
134
|
+
"lint": "eslint 'src/**/*.{ts,tsx}'",
|
|
135
|
+
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
|
|
136
|
+
"format": "prettier --check .",
|
|
137
|
+
"format:fix": "prettier --write .",
|
|
138
|
+
"storybook": "storybook dev -p 6006",
|
|
139
|
+
"storybook:build": "storybook build && echo 'ui.prokodo.com' > storybook-static/CNAME",
|
|
140
|
+
"storybook:deploy": "gh-pages -d storybook-static",
|
|
141
|
+
"generate-icon-types": "node tools/generate-icon-names.cjs",
|
|
142
|
+
"release": "pnpm changeset && pnpm changeset version && pnpm install && git add . && git commit -m 'ci: version bump' && git push && pnpm publish --access public"
|
|
140
143
|
}
|
|
141
|
-
}
|
|
144
|
+
}
|