-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.78 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
{
"name": "spectre-react-lib",
"version": "0.6.2",
"description": "Spectre.css and React integration",
"author": "Philip Van Raalte",
"license": "MIT",
"keywords": [
"react",
"spectre",
"ui"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/FIL1994/spectre-react-lib"
},
"bugs": {
"url": "https://github.com/FIL1994/spectre-react-lib/issues"
},
"homepage": "https://github.com/FIL1994/spectre-react-lib#readme",
"scripts": {
"build": "tsup --config tsup.config.ts",
"dev": "pnpm storybook",
"format": "prettier --cache -w .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"tsc": "tsc --noEmit",
"test": "bun test --coverage",
"lint": "eslint --config .eslintrc.cjs --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"release:help": "bunx release-please --help",
"release:beta": "bunx release-please release-pr --prerelease-type beta --repo-url FIL1994/spectre-react-lib --token $GITHUB_TOKEN",
"release:bootstrap": "bunx release-please bootstrap --prerelease --repo-url FIL1994/spectre-react-lib --token $GITHUB_TOKEN --initial-version 0.4.5 --release-type node --bump-minor-pre-major --bump-patch-for-minor-pre-major"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.12.3",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-interactions": "^7.6.20",
"@storybook/addon-links": "^7.6.20",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.20",
"@storybook/manager-api": "^7.6.20",
"@storybook/react": "^7.6.20",
"@storybook/react-vite": "^7.6.20",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.6.20",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"bun-types": "^1.1.36",
"eslint": "^8.57.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-storybook": "^0.6.15",
"happy-dom": "^12.10.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"spectre.css": "^0.5.9",
"storybook": "^7.6.20",
"tiny-invariant": "^1.3.3",
"ts-essentials": "^9.4.2",
"tsup": "^7.3.0",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
}
}