-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.86 KB
/
package.json
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
{
"name": "kirarin",
"version": "0.0.16",
"description": "Kirarin Text & Image & etc... :)",
"keywords": [
"react",
"react-component",
"sparkle",
"kirarin",
"text",
"iamge"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nantokaworks/kirarin.git"
},
"license": "MIT",
"author": "Yamashita, Shinichi",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./style.css": "./dist/style.css",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "run-s build:panda build:main build:panda:static",
"build:main": "tsup",
"buildx": "rimraf ./dist && pnpm build:panda && vite build && tsc -p tsconfig.build.json",
"build:docs": "typedoc",
"build:panda": "panda codegen --clean",
"build:panda:static": "panda cssgen --minify --outfile dist/style.css",
"dev:link": "pnpm link --global && cd node_modules/react && pnpm link --global && cd ../react-dom && pnpm link --global",
"dev:unlink": "pnpm unlink --global && cd node_modules/react && pnpm unlink --global && cd ../react-dom && pnpm unlink --global",
"dev:panda": "pandacss --watch",
"dev:storybook": "storybook dev -p 6006",
"format": "pnpm dlx sort-package-json && pnpm dlx sort-compiler-options && pnpm dlx sort-compiler-options -c tsconfig.build.json && pnpm dlx prettier --write './**/*.{ts,tsx}' 'tsconfig*.json'",
"lint": "eslint ./src/*",
"prepare": "panda codegen --clean",
"prepublish": "pnpm build",
"storybook": "run-p build:panda dev:panda dev:storybook"
},
"prettier": "prettier-config-nantokaworks",
"devDependencies": {
"@pandacss/dev": "^0.23.0",
"@pandacss/types": "^0.23.0",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-vite": "^7.6.7",
"@storybook/test": "^7.6.7",
"@types/react": "^18.2.46",
"anoare": "^0.0.2",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"npm-run-all": "^4.1.5",
"prettier-config-nantokaworks": "^0.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"saikoro": "^0.0.3",
"storybook": "^7.6.7",
"storybook-dark-mode": "^3.0.3",
"tsup": "^8.0.1",
"typedoc": "^0.25.6",
"typescript": "^5.0.4",
"usefoobar": "^0.0.2"
},
"peerDependencies": {
"anoare": "^0.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"saikoro": "^0.0.3",
"usefoobar": "^0.0.2"
},
"publishConfig": {
"access": "public"
}
}