-
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) · 1.99 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.99 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": "@ehubbell/html",
"version": "0.5.0",
"description": "An HTML component library with Tailwind rollups.",
"homepage": "https://github.com/ehubbell/html",
"license": "ISC",
"type": "module",
"main": "dist/index.es.js",
"author": {
"name": "Eric Hubbell",
"email": "eric@erichubbell.com",
"url": "https://github.com/ehubbell"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ehubbell/html.git"
},
"files": [
"dist"
],
"keywords": [
"html",
"react",
"playbooks",
"tailwind",
"tailwind rollups",
"typescript"
],
"scripts": {
"dev": "vite build --mode development --minify false --watch",
"start": "vite build --mode production --minify false --watch",
"build": "vite build --mode production --minify true",
"build:ts": "dts-bundle-generator --config dts.config.ts",
"clean": "npm run lint:fix",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier src",
"format:fix": "prettier --write src",
"commit": "scripts/commit.sh",
"deploy": "scripts/deploy.sh",
"git": "git push --tags",
"test": "jest",
"prepare": "husky"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"dependencies": {
"react-html-props": "^2.1.1"
},
"devDependencies": {
"@ehubbell/configs": "^0.0.16",
"@types/jest": "^29.5.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^29.5.0",
"prettier": "^3.5.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.16",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-plugin-size": "^0.1.4",
"vite-plugin-yalc": "^0.0.11"
},
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
}