-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.3 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
{
"name": "react-net-templates",
"version": "0.0.1",
"description": "Shared React Tailwind Components for react-templates.net project templates",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite --config vite.demo.config.ts",
"build": "tsc && vite build",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"build-only": "vite build -l error",
"type-check": "tsc --noEmit",
"bump": "npm version patch && git push origin main --follow-tags",
"bump:minor": "npm version minor && git push origin main --follow-tags",
"bump:major": "npm version major && git push origin main --follow-tags",
"release": "gh release create v$(node -p \"require('./package.json').version\") --title v$(node -p \"require('./package.json').version\") --generate-notes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ServiceStack/react-net-templates.git"
},
"keywords": [
"react",
"tailwind",
"components",
"ui",
"servicestack"
],
"author": "ServiceStack",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ServiceStack/react-net-templates/issues"
},
"homepage": "https://github.com/ServiceStack/react-net-templates#readme",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/vite": "^4.1.17",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.1",
"jsdom": "^27.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vitest": "^4.0.14"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.4.0"
}
}