-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "daynight",
"version": "4.0.2",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"readme": "README.md",
"scripts": {
"generate": "node scripts/generate.mjs",
"test": "vitest run",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs --declarationDir dist/types",
"build:esm": "tsc --module ESNext --outDir dist/esm --declarationDir dist/types",
"build:types": "tsc --emitDeclarationOnly --outDir dist/types",
"build": "rm -rf dist && npm run build:cjs && npm run build:esm && npm run build:types",
"start": "tsc --watch"
},
"keywords": [
"sunrise",
"sunset",
"sun",
"dark mode"
],
"author": "Roman Yanke <[email protected]>",
"license": "MIT",
"devDependencies": {
"jsts": "2.12.1",
"prettier": "3.8.1",
"typescript": "6.0.2",
"vitest": "3.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/romanyanke/daynight.git"
},
"files": [
"dist"
]
}