-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.57 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
{
"name": "leafstone",
"version": "0.0.2",
"description": "Easily run single file React components - just `leafstone Component.jsx` with zero setup",
"main": "lib/index.js",
"bin": {
"leafstone": "bin/leafstone.js"
},
"files": [
"bin/",
"lib/",
"templates/",
"assets/"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"react",
"development",
"components",
"prototyping",
"jsx"
],
"author": "",
"license": "MIT",
"homepage": "https://leafst.one",
"repository": {
"type": "git",
"url": "https://github.com/matthen/leafstone.git"
},
"bugs": {
"url": "https://github.com/matthen/leafstone/issues"
},
"type": "commonjs",
"dependencies": {
"@vitejs/plugin-react-swc": "^4.0.0",
"autoprefixer": "^10.4.21",
"lucide-react": "^0.539.0",
"postcss": "^8.5.6",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"tailwind-dracula": "^1.1.1",
"tailwindcss": "^3.4.17",
"vite": "^7.1.1",
"yargs": "^18.0.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14"
}
}