@liiift-studio/mac-os9-ui 0.1.0 → 0.1.3
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/ATTRIBUTION.md +99 -99
- package/LICENSE +49 -49
- package/README.md +243 -243
- package/dist/index.cjs.map +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +109 -109
package/package.json
CHANGED
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@liiift-studio/mac-os9-ui",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "A pixel-perfect Mac OS 9 UI component library for React and TypeScript",
|
|
5
|
-
"private": false,
|
|
6
|
-
"sideEffects": false,
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "./dist/cjs/index.js",
|
|
9
|
-
"module": "./dist/esm/index.js",
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"import": {
|
|
14
|
-
"types": "./dist/index.d.ts",
|
|
15
|
-
"default": "./dist/esm/index.js"
|
|
16
|
-
},
|
|
17
|
-
"require": {
|
|
18
|
-
"types": "./dist/index.d.ts",
|
|
19
|
-
"default": "./dist/cjs/index.js"
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"./styles": {
|
|
23
|
-
"import": "./dist/esm/styles/theme.css",
|
|
24
|
-
"require": "./dist/cjs/styles/theme.css"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"files": [
|
|
28
|
-
"dist",
|
|
29
|
-
"README.md",
|
|
30
|
-
"LICENSE",
|
|
31
|
-
"ATTRIBUTION.md"
|
|
32
|
-
],
|
|
33
|
-
"scripts": {
|
|
34
|
-
"dev": "storybook dev -p 6006",
|
|
35
|
-
"build": "tsup",
|
|
36
|
-
"build:storybook": "storybook build",
|
|
37
|
-
"test": "vitest run",
|
|
38
|
-
"test:watch": "vitest",
|
|
39
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
40
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
41
|
-
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
|
|
42
|
-
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,md}\"",
|
|
43
|
-
"typecheck": "tsc --noEmit",
|
|
44
|
-
"changeset": "changeset",
|
|
45
|
-
"version": "changeset version",
|
|
46
|
-
"release": "npm run build && changeset publish",
|
|
47
|
-
"prepublishOnly": "npm run build"
|
|
48
|
-
},
|
|
49
|
-
"peerDependencies": {
|
|
50
|
-
"react": "^18.0.0",
|
|
51
|
-
"react-dom": "^18.0.0"
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"@changesets/cli": "^2.27.10",
|
|
55
|
-
"@chromatic-com/storybook": "^3.2.2",
|
|
56
|
-
"@storybook/addon-essentials": "^8.5.0",
|
|
57
|
-
"@storybook/addon-interactions": "^8.5.0",
|
|
58
|
-
"@storybook/addon-links": "^8.5.0",
|
|
59
|
-
"@storybook/blocks": "^8.5.0",
|
|
60
|
-
"@storybook/react": "^8.5.0",
|
|
61
|
-
"@storybook/react-vite": "^8.5.0",
|
|
62
|
-
"@storybook/test": "^8.5.0",
|
|
63
|
-
"@testing-library/jest-dom": "^6.6.3",
|
|
64
|
-
"@testing-library/react": "^16.1.0",
|
|
65
|
-
"@testing-library/user-event": "^14.5.2",
|
|
66
|
-
"@types/react": "^18.3.18",
|
|
67
|
-
"@types/react-dom": "^18.3.5",
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
69
|
-
"@typescript-eslint/parser": "^8.20.0",
|
|
70
|
-
"@vitejs/plugin-react": "^4.3.4",
|
|
71
|
-
"eslint": "^9.18.0",
|
|
72
|
-
"eslint-config-prettier": "^9.1.0",
|
|
73
|
-
"eslint-plugin-react": "^7.37.2",
|
|
74
|
-
"eslint-plugin-react-hooks": "^5.1.0",
|
|
75
|
-
"eslint-plugin-storybook": "^0.11.1",
|
|
76
|
-
"jsdom": "^25.0.1",
|
|
77
|
-
"prettier": "^3.4.2",
|
|
78
|
-
"react": "^18.3.1",
|
|
79
|
-
"react-dom": "^18.3.1",
|
|
80
|
-
"storybook": "^8.5.0",
|
|
81
|
-
"tsup": "^8.3.5",
|
|
82
|
-
"typescript": "^5.7.3",
|
|
83
|
-
"vite": "^6.0.7",
|
|
84
|
-
"vitest": "^2.1.8"
|
|
85
|
-
},
|
|
86
|
-
"keywords": [
|
|
87
|
-
"react",
|
|
88
|
-
"typescript",
|
|
89
|
-
"ui",
|
|
90
|
-
"components",
|
|
91
|
-
"mac-os-9",
|
|
92
|
-
"retro",
|
|
93
|
-
"design-system"
|
|
94
|
-
],
|
|
95
|
-
"author": "Liiift Studio",
|
|
96
|
-
"license": "MIT",
|
|
97
|
-
"repository": {
|
|
98
|
-
"type": "git",
|
|
99
|
-
"url": "https://github.com/Liiift-Studio/Mac-OS-9-React.git"
|
|
100
|
-
},
|
|
101
|
-
"homepage": "https://github.
|
|
102
|
-
"bugs": {
|
|
103
|
-
"url": "https://github.com/Liiift-Studio/Mac-OS-9-React/issues"
|
|
104
|
-
},
|
|
105
|
-
"attribution": {
|
|
106
|
-
"designs": "Mac OS 9 UI Kit by Michael Feeney (https://swallowmygraphicdesign.com/project/macostalgia)",
|
|
107
|
-
"license": "CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)"
|
|
108
|
-
}
|
|
109
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@liiift-studio/mac-os9-ui",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "A pixel-perfect Mac OS 9 UI component library for React and TypeScript",
|
|
5
|
+
"private": false,
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/cjs/index.js",
|
|
9
|
+
"module": "./dist/esm/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"default": "./dist/esm/index.js"
|
|
16
|
+
},
|
|
17
|
+
"require": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"default": "./dist/cjs/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"./styles": {
|
|
23
|
+
"import": "./dist/esm/styles/theme.css",
|
|
24
|
+
"require": "./dist/cjs/styles/theme.css"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"LICENSE",
|
|
31
|
+
"ATTRIBUTION.md"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"dev": "storybook dev -p 6006",
|
|
35
|
+
"build": "tsup",
|
|
36
|
+
"build:storybook": "storybook build",
|
|
37
|
+
"test": "vitest run",
|
|
38
|
+
"test:watch": "vitest",
|
|
39
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
40
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
41
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
|
|
42
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,md}\"",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"changeset": "changeset",
|
|
45
|
+
"version": "changeset version",
|
|
46
|
+
"release": "npm run build && changeset publish",
|
|
47
|
+
"prepublishOnly": "npm run build"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
51
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@changesets/cli": "^2.27.10",
|
|
55
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
56
|
+
"@storybook/addon-essentials": "^8.5.0",
|
|
57
|
+
"@storybook/addon-interactions": "^8.5.0",
|
|
58
|
+
"@storybook/addon-links": "^8.5.0",
|
|
59
|
+
"@storybook/blocks": "^8.5.0",
|
|
60
|
+
"@storybook/react": "^8.5.0",
|
|
61
|
+
"@storybook/react-vite": "^8.5.0",
|
|
62
|
+
"@storybook/test": "^8.5.0",
|
|
63
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
64
|
+
"@testing-library/react": "^16.1.0",
|
|
65
|
+
"@testing-library/user-event": "^14.5.2",
|
|
66
|
+
"@types/react": "^18.3.18",
|
|
67
|
+
"@types/react-dom": "^18.3.5",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
69
|
+
"@typescript-eslint/parser": "^8.20.0",
|
|
70
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
71
|
+
"eslint": "^9.18.0",
|
|
72
|
+
"eslint-config-prettier": "^9.1.0",
|
|
73
|
+
"eslint-plugin-react": "^7.37.2",
|
|
74
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
75
|
+
"eslint-plugin-storybook": "^0.11.1",
|
|
76
|
+
"jsdom": "^25.0.1",
|
|
77
|
+
"prettier": "^3.4.2",
|
|
78
|
+
"react": "^18.3.1",
|
|
79
|
+
"react-dom": "^18.3.1",
|
|
80
|
+
"storybook": "^8.5.0",
|
|
81
|
+
"tsup": "^8.3.5",
|
|
82
|
+
"typescript": "^5.7.3",
|
|
83
|
+
"vite": "^6.0.7",
|
|
84
|
+
"vitest": "^2.1.8"
|
|
85
|
+
},
|
|
86
|
+
"keywords": [
|
|
87
|
+
"react",
|
|
88
|
+
"typescript",
|
|
89
|
+
"ui",
|
|
90
|
+
"components",
|
|
91
|
+
"mac-os-9",
|
|
92
|
+
"retro",
|
|
93
|
+
"design-system"
|
|
94
|
+
],
|
|
95
|
+
"author": "Liiift Studio",
|
|
96
|
+
"license": "MIT",
|
|
97
|
+
"repository": {
|
|
98
|
+
"type": "git",
|
|
99
|
+
"url": "https://github.com/Liiift-Studio/Mac-OS-9-React.git"
|
|
100
|
+
},
|
|
101
|
+
"homepage": "https://liiift-studio.github.io/Mac-OS-9-React/",
|
|
102
|
+
"bugs": {
|
|
103
|
+
"url": "https://github.com/Liiift-Studio/Mac-OS-9-React/issues"
|
|
104
|
+
},
|
|
105
|
+
"attribution": {
|
|
106
|
+
"designs": "Mac OS 9 UI Kit by Michael Feeney (https://swallowmygraphicdesign.com/project/macostalgia)",
|
|
107
|
+
"license": "CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)"
|
|
108
|
+
}
|
|
109
|
+
}
|