-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.33 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.33 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@pai-forge/mahjong-react-ui",
"version": "0.1.0",
"description": "React UI components for Mahjong (Riichi)",
"type": "module",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/mahjong-react-ui.css"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "vite build && tsc --project tsconfig.build.json",
"build:storybook": "storybook build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --fix",
"format": "prettier --write src stories",
"format:check": "prettier --check src stories",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@pai-forge/riichi-mahjong": "^0.1.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/react-native": "^0.72.8",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^2.1.8"
},
"keywords": [
"mahjong",
"riichi",
"react",
"ui",
"components"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/k0kishima/mahjong-react-ui"
},
"engines": {
"node": ">=20.0.0"
},
"volta": {
"node": "24.12.0"
}
}