stone-kit 0.0.56 → 0.0.61

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 CHANGED
@@ -1,65 +1,69 @@
1
- {
2
- "name": "stone-kit",
3
- "description": "uikit for redesign",
4
- "private": false,
5
- "version": "0.0.56",
6
- "author": "Mollycodd1e",
7
- "license": "ISC",
8
- "type": "module",
9
- "scripts": {
10
- "dev": "vite",
11
- "build": "tsc && vite build",
12
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
13
- "preview": "vite preview",
14
- "prepublishOnly": "npm run build"
15
- },
16
- "dependencies": {
17
- "classnames": "^2.5.1"
18
- },
19
- "devDependencies": {
20
- "@types/node": "^20.12.12",
21
- "@types/react": "^18.2.66",
22
- "@types/react-dom": "^18.2.22",
23
- "@typescript-eslint/eslint-plugin": "^7.2.0",
24
- "@typescript-eslint/parser": "^7.2.0",
25
- "@vitejs/plugin-react": "^4.2.1",
26
- "c8": "^9.1.0",
27
- "eslint": "^8.57.0",
28
- "eslint-plugin-react": "^7.34.1",
29
- "eslint-plugin-react-hooks": "^4.6.0",
30
- "eslint-plugin-react-refresh": "^0.4.6",
31
- "glob": "^10.3.16",
32
- "react": "^18.2.0",
33
- "react-dom": "^18.2.0",
34
- "sass": "^1.77.2",
35
- "typescript": "^5.2.2",
36
- "vite": "^5.2.0",
37
- "vite-plugin-dts": "^3.9.1",
38
- "vite-plugin-lib-inject-css": "^2.1.1",
39
- "vite-plugin-svgr": "^4.2.0"
40
- },
41
- "main": "dist/main.js",
42
- "types": "dist/main.d.ts",
43
- "files": [
44
- "dist"
45
- ],
46
- "sideEffects": [
47
- "**/*.css"
48
- ],
49
- "directories": {
50
- "lib": "lib"
51
- },
52
- "repository": {
53
- "type": "git",
54
- "url": "git+https://github.com/Mollycodd1e/viteKit.git"
55
- },
56
- "keywords": [
57
- "kit",
58
- "stone",
59
- "ui"
60
- ],
61
- "bugs": {
62
- "url": "https://github.com/Mollycodd1e/viteKit/issues"
63
- },
64
- "homepage": "https://github.com/Mollycodd1e/viteKit#readme"
65
- }
1
+ {
2
+ "name": "stone-kit",
3
+ "description": "uikit for redesign",
4
+ "private": false,
5
+ "version": "0.0.61",
6
+ "author": "Mollycodd1e",
7
+ "license": "ISC",
8
+ "type": "module",
9
+ "scripts": {
10
+ "clean:lib": "node scripts/cleanLib.js",
11
+ "copy:src": "node scripts/copySrcToLib.js",
12
+ "prepare": "npm run clean:lib && npm run copy:src",
13
+ "build": "npm run prepare && tsc && vite build",
14
+ "dev": "vite",
15
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
16
+ "preview": "vite preview",
17
+ "prepublishOnly": "npm run build",
18
+ "release": "node scripts/versionUpdate.js && npm publish"
19
+ },
20
+ "dependencies": {
21
+ "classnames": "^2.5.1"
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^20.12.12",
25
+ "@types/react": "^18.2.66",
26
+ "@types/react-dom": "^18.2.22",
27
+ "@typescript-eslint/eslint-plugin": "^7.2.0",
28
+ "@typescript-eslint/parser": "^7.2.0",
29
+ "@vitejs/plugin-react": "^4.2.1",
30
+ "c8": "^9.1.0",
31
+ "eslint": "^8.57.0",
32
+ "eslint-plugin-react": "^7.34.1",
33
+ "eslint-plugin-react-hooks": "^4.6.0",
34
+ "eslint-plugin-react-refresh": "^0.4.6",
35
+ "glob": "^10.3.16",
36
+ "react": "^18.2.0",
37
+ "react-dom": "^18.2.0",
38
+ "sass": "^1.77.2",
39
+ "typescript": "^5.2.2",
40
+ "vite": "^5.2.0",
41
+ "vite-plugin-dts": "^3.9.1",
42
+ "vite-plugin-lib-inject-css": "^2.1.1",
43
+ "vite-plugin-svgr": "^4.2.0"
44
+ },
45
+ "main": "dist/main.js",
46
+ "types": "dist/main.d.ts",
47
+ "files": [
48
+ "dist"
49
+ ],
50
+ "sideEffects": [
51
+ "**/*.css"
52
+ ],
53
+ "directories": {
54
+ "lib": "lib"
55
+ },
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/Mollycodd1e/viteKit.git"
59
+ },
60
+ "keywords": [
61
+ "kit",
62
+ "stone",
63
+ "ui"
64
+ ],
65
+ "bugs": {
66
+ "url": "https://github.com/Mollycodd1e/viteKit/issues"
67
+ },
68
+ "homepage": "https://github.com/Mollycodd1e/viteKit#readme"
69
+ }
package/dist/main.d.ts DELETED
@@ -1,11 +0,0 @@
1
- export { Button } from './components/Button';
2
- export { MobileButton } from './components/MobileButton';
3
- export { NewIcon } from './components/NewIcon';
4
- export { DestinationTab } from './components/DestinationTab';
5
- export { RoundButton } from './components/RoundButton';
6
- export { Tag } from './components/Tag';
7
- export { Switcher } from './components/Switcher';
8
- export { Text } from './components/Text';
9
- export { Flex } from './components/Flex';
10
- export { Input } from './components/Input';
11
- export { Modal } from './components/Modal';
package/dist/main.js DELETED
@@ -1,24 +0,0 @@
1
- import { Button as t } from "./components/Button/ui/Button.js";
2
- import { MobileButton as x } from "./components/MobileButton/ui/MobileButton.js";
3
- import { NewIcon as f } from "./components/NewIcon/ui/NewIcon.js";
4
- import { DestinationTab as n } from "./components/DestinationTab/ui/DestinationTab.js";
5
- import { RoundButton as a } from "./components/RoundButton/ui/RoundButton.js";
6
- import { Tag as l } from "./components/Tag/ui/Tag.js";
7
- import { Switcher as T } from "./components/Switcher/ui/Switcher.js";
8
- import { Text as c } from "./components/Text/ui/Text.js";
9
- import { Flex as w } from "./components/Flex/ui/Flex.js";
10
- import { Input as M } from "./components/Input/ui/Input.js";
11
- import { Modal as h } from "./components/Modal/ui/Modal.js";
12
- export {
13
- t as Button,
14
- n as DestinationTab,
15
- w as Flex,
16
- M as Input,
17
- x as MobileButton,
18
- h as Modal,
19
- f as NewIcon,
20
- a as RoundButton,
21
- T as Switcher,
22
- l as Tag,
23
- c as Text
24
- };