-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.06 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.06 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@mincho-js/react",
"description": "React utilities for Mincho",
"version": "0.1.2",
"sideEffects": false,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mincho-js/mincho.git",
"directory": "packages/react"
},
"keywords": [
"react",
"css",
"style",
"typescript",
"vanilla-extract"
],
"bugs": {
"url": "https://github.com/mincho-js/mincho/issues"
},
"homepage": "https://github.com/mincho-js/mincho/tree/main/packages/react#readme",
"typings": "./dist/esm/index.d.ts",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"./runtime": {
"import": {
"types": "./dist/esm/runtime.d.ts",
"default": "./dist/esm/runtime.mjs"
},
"require": {
"types": "./dist/cjs/runtime.d.cts",
"default": "./dist/cjs/runtime.cjs"
}
}
},
"files": [
"dist",
"src",
"**/package.json"
],
"scripts": {
"clean": "yarn g:clean",
"build": "yarn g:build",
"build:watch": "yarn g:build-watch",
"coverage": "yarn g:coverage",
"lint": "yarn g:lint",
"fix": "yarn g:fix",
"check": "yarn g:check"
},
"prettier": "prettier-config-custom",
"dependencies": {
"@mincho-js/css": "workspace:^",
"@mincho-js/csstype": "^3.1.4"
},
"devDependencies": {
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vanilla-extract/css": "^1.18.0",
"eslint-config-custom": "workspace:^",
"prettier-config-custom": "workspace:^",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tsconfig-custom": "workspace:^",
"vite-config-custom": "workspace:^"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}