-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "ctx.do",
"module": "index.js",
"version": "1.2.0",
"description": "Context Enrichment API",
"homepage": "https://ctx.do",
"type": "module",
"author": {
"name": "Drivly",
"email": "[email protected]"
},
"repository": "[email protected]:drivly/ctx.do.git",
"sponsor": {
"url": "https://driv.ly"
},
"license": "MIT",
"scripts": {
"build": "esbuild worker.js --bundle --format=esm --minify --outfile=index.js",
"dev": "wrangler dev worker.js --inspector-port 1337",
"deploy": "wrangler publish worker.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"semi": false
},
"devDependencies": {
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"wrangler": "^3.22.0"
},
"dependencies": {
"bcp-47": "^2.1.0",
"geolib": "^3.3.4",
"punycode": "^2.3.1",
"qs": "^6.11.2",
"ua-parser-js": "^1.0.37"
}
}