-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.02 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
{
"name": "react-components-starter",
"version": "0.0.0",
"description": "A starter for creating a React component library.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/author/library#readme",
"bugs": {
"url": "https://github.com/author/library/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/author/library.git"
},
"author": "Author Name <author.name@mail.com>",
"files": [
"dist"
],
"packageManager": "pnpm@10.18.2",
"engines": {
"node": ">=22"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"build:prod": "NODE_ENV=prod tsdown",
"build:debug": "tsdown --no-treeshake",
"dev": "tsdown --watch",
"lint": "eslint .",
"playground": "vite --config playground/vite.config.ts",
"test": "vitest --watch false",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"peerDependencies": {
"react": "^19.1.0"
},
"devDependencies": {
"@bosh-code/tsdown-plugin-inject-css": "^1.0.2",
"@bosh-code/tsdown-plugin-tailwindcss": "^1.0.1",
"@eslint/js": "^9.37.0",
"@tailwindcss/vite": "^4.1.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"bumpp": "^10.3.1",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.4.0",
"happy-dom": "^20.0.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.1.14",
"tsdown": "^0.15.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-tsconfig-paths": "^1.4.1",
"vitest": "^3.2.4"
}
}