-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.96 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.96 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
85
86
87
88
89
90
91
92
93
94
{
"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://git@github.com/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": "bun run storybook",
"format": "prettier --cache -w .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"tsc": "tsc --noEmit",
"test": "bun test --coverage",
"test:watch": "bun test --watch",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" \".storybook/**/*.{ts,tsx,js,jsx}\"",
"audit": "bun audit --audit-level moderate",
"ci": "bun run lint && bun run tsc && bun run test && bun run build && bun run build-storybook && bun run audit",
"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": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"engines": {
"node": ">=20.19.0",
"bun": ">=1.3.14"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@happy-dom/global-registrator": "^20.9.0",
"@storybook/addon-docs": "^10.4.1",
"@storybook/react-vite": "^10.4.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"bun-types": "^1.3.14",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-storybook": "^10.4.1",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"prettier": "^3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"spectre.css": "^0.5.9",
"storybook": "^10.4.1",
"tiny-invariant": "^1.3.3",
"ts-essentials": "^10.2.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.16",
"vite-plus": "^0.1.24"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"packageManager": "bun@1.3.14",
"publishConfig": {
"access": "public"
}
}