forked from PButcher/flipdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "@destination/flipdown",
"version": "0.5.7",
"description": "A lightweight and performant flip styled countdown clock",
"homepage": "https://github.com/wearedestination/flipdown#readme",
"bugs": {
"url": "https://github.com/wearedestination/flipdown/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wearedestination/flipdown.git"
},
"license": "MIT",
"author": "Peter Butcher <pbutcher93@gmail.com>",
"type": "module",
"main": "dist/flipdown.mjs",
"types": "dist/flipdown.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"lint:es": "eslint src",
"type-check": "tsc --noEmit"
},
"prettier": "@destination/prettier-config",
"eslintConfig": {
"extends": [
"@destination/eslint-config"
]
},
"devDependencies": {
"@destination/eslint-config": "^1.4.2",
"@destination/prettier-config": "^4.0.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
}
}