-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "cloudflare-device-detector",
"version": "1.0.0",
"description": "Lightweight device detector library that works with Cloudflare Workers and Edge Runtime",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"keywords": [
"device-detector",
"user-agent",
"parser",
"cloudflare",
"edge",
"browser",
"mobile"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"prettier": "^2.8.8",
"tsup": "^6.7.0",
"typescript": "^5.0.0",
"vitest": "^0.31.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aligzl/nuxt-device-detector.git"
},
"bugs": {
"url": "https://github.com/aligzl/nuxt-device-detector/issues"
},
"homepage": "https://github.com/aligzl/nuxt-device-detector#readme"
}