-
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) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 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": "@scottwalker/lucent",
"version": "1.3.0",
"description": "React layout system with flexible sidebar, header, footer and infobar management",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/scottwalker87/lucent-react-layout.git"
},
"homepage": "https://github.com/scottwalker87/lucent-react-layout#readme",
"bugs": {
"url": "https://github.com/scottwalker87/lucent-react-layout/issues"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build",
"commit": "git add . && git commit -m \"chore: build for release\"",
"push": "git push && git push --tags",
"rel:patch": "npm run prepare && npm run commit && npm version patch && npm publish --access public && npm run push",
"rel:minor": "npm run prepare && npm run commit && npm version minor && npm publish --access public && npm run push",
"rel:major": "npm run prepare && npm run commit && npm version major && npm publish --access public && npm run push"
},
"keywords": [
"react",
"layout",
"typescript",
"ui",
"component"
],
"author": "Scott Walker",
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"postcss-import": "^16.1.1",
"rimraf": "^5.0.0",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"tslib": "^2.8.1",
"typescript": "^5.0.0"
}
}