-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2 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
{
"name": "sakana-widget-react",
"type": "module",
"version": "0.3.0",
"packageManager": "[email protected]",
"description": "A React component that wrap \"Sakana! Widget\".",
"author": "pinkchampagne",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/p-toy-factory/sakana-widget-react"
},
"keywords": [
"widget",
"lycoris-recoil",
"lycoris",
"recoil",
"chisato",
"takina"
],
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.tsx --clean --dts --format=esm,cjs",
"dev": "pnpm run storybook",
"format": "biome format .",
"format:fix": "pnpm run format --write",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint . --cache",
"lint:fix": "pnpm run lint --fix",
"release": "pnpm run build && npm publish",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sakana-widget": "^2.7.0"
},
"dependencies": {
"dequal": "^2.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@pinkchampagne/tsconfig": "^1.0.0",
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-interactions": "^7.6.8",
"@storybook/addon-links": "^7.6.8",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.8",
"@storybook/react": "^7.6.8",
"@storybook/react-vite": "^7.6.8",
"@storybook/test": "^7.6.8",
"@testing-library/react-hooks": "^8.0.1",
"@types/object.pick": "^1.3.4",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"eslint": "^8.56.0",
"eslint-config-pcp": "2.0.0-beta.3",
"eslint-plugin-storybook": "^0.6.15",
"object.pick": "^1.3.0",
"react-test-renderer": "^18.2.0",
"storybook": "^7.6.8",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
}
}