-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 KB
/
package.json
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
70
71
{
"name": "@epic-web/client-hints",
"version": "0.0.0-semantically-released",
"description": "Server-render browser-based user preferences (like theme preference and timezone).",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/epicweb-dev/client-hints"
},
"bugs": {
"url": "https://github.com/epicweb-dev/client-hints/issues"
},
"homepage": "https://github.com/epicweb-dev/client-hints#readme",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./color-scheme": {
"types": "./dist/color-scheme.d.ts",
"default": "./dist/color-scheme.js"
},
"./time-zone": {
"types": "./dist/time-zone.d.ts",
"default": "./dist/time-zone.js"
},
"./reduced-motion": {
"types": "./dist/reduced-motion.d.ts",
"default": "./dist/reduced-motion.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"test": "tsx --test --test-reporter spec --experimental-test-coverage test/*.test.ts",
"test:watch": "tsx --test --test-reporter spec --watch test/*.test.ts"
},
"devDependencies": {
"@types/node": "^20.9.4",
"prettier": "^3.1.0",
"tsx": "^4.3.0",
"typescript": "^5.3.2"
},
"prettier": {
"semi": false,
"useTabs": true,
"singleQuote": true,
"proseWrap": "always",
"overrides": [
{
"files": [
"**/*.json"
],
"options": {
"useTabs": false
}
}
]
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"license": "MIT"
}