-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "@kachurun/create-solid-storybook",
"version": "0.0.0",
"private": true,
"scripts": {
"version": "changeset && changeset version",
"release": "changeset publish",
"release:next": "changeset publish --tag next",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "turbo run build",
"dev": "turbo run dev",
"types": "turbo run types",
"clean": "turbo run clean && rm -rf .turbo node_modules",
"prepublishOnly": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kachurun/create-solid-storybook.git"
},
"keywords": [
"solidjs",
"solid",
"storybook",
"storybook-addon",
"storybook-integration",
"component-library",
"ui-components",
"vite",
"solid-vite",
"solid-storybook",
"frontend",
"javascript",
"typescript"
],
"author": "kachurun",
"license": "MIT",
"bugs": {
"url": "https://github.com/kachurun/create-solid-storybook/issues"
},
"homepage": "https://github.com/kachurun/create-solid-storybook#readme",
"description": "SolidJS integration with Storybook",
"packageManager": "bun@1.2.17",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@flexbe/eslint-config": "^1.0.11",
"@tsconfig/strictest": "^2.0.5",
"acorn-walk": "^8.3.4",
"bun": "^1.2.14",
"eslint": "^9.30.1",
"tsup": "^8.5.0",
"turbo": "^2.5.4"
},
"dependencies": {
"commander": "^14.0.0",
"tar": "^7.4.3"
}
}