-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.71 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.71 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
{
"name": "sundriven",
"title": "Sun Driven",
"id": "sundriven@brett.zamir",
"type": "module",
"version": "0.8.0",
"license": "MIT",
"author": "Brett Zamir",
"contributors": [],
"scripts": {
"prepublish": "npm run copy && npm run rollup",
"rollup": "rollup -c",
"copy": "cp ./node_modules/jamilih/dist/jml.mjs vendor/jml.mjs && cp ./node_modules/luxon/build/es6/luxon.mjs vendor/luxon.mjs",
"lint": "eslint --ext=js,md,html .",
"open": "open-cli http://localhost:8093 && npm start",
"start": "static -p 8093",
"test": "npm run lint && npm run rollup"
},
"dependencies": {
"jamilih": "0.62.1",
"luxon": "^3.7.2",
"meeussunmoon": "3.1.0"
},
"devDependencies": {
"@brettz9/node-static": "^0.1.1",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.39.1",
"eslint-config-ash-nazg": "39.8.0",
"open-cli": "^8.0.0",
"rollup": "^4.53.3"
},
"browserslist": [
"last 2 Firefox versions",
"last 2 Chrome versions"
],
"engines": {
"node": ">=20.0.0"
},
"bugs": "https://github.com/bahaidev/sundriven/issues",
"homepage": "https://github.com/bahaidev/sundriven",
"repository": {
"type": "git",
"url": "https://github.com/bahaidev/sundriven.git"
},
"description": "Very simple app to provide toaster-style notification reminders (daily or one-time) given relative to either the current time or to astronomical events such as dawn, sunrise, or sunset. Note that the astronomical event times are currently determined mathematically rather than by querying an online service.",
"keywords": [
"sunrise",
"sunset",
"to-do"
]
}