-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "calooprjs",
"type": "module",
"version": "1.0.0",
"description": "Un motor de calendario ligero y extensible, construido con Preact, que permite renderizar vistas y eventos de forma dinámica.",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"dev": "npm run clean && rollup -c -w",
"build": "npm run clean && NODE_ENV=production rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bert0h-dev/CaLooprJS.git"
},
"keywords": [
"calendar",
"preact",
"lightweight",
"component",
"ui",
"events",
"views",
"dynamic"
],
"author": "Bert0h-dev (humberto.morales.14@hotmail.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/bert0h-dev/CaLooprJS/issues"
},
"homepage": "https://github.com/bert0h-dev/CaLooprJS#readme",
"dependencies": {
"preact": "^10.27.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"postcss-import": "^16.1.1",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.46.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-html-bundle": "^0.0.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^3.0.0"
}
}