-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.76 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "fake-geolocation",
"version": "0.0.0",
"description": "A fake implementation of the W3C Geolocation API",
"keywords": [
"fake",
"geolocation",
"w3c"
],
"repository": "ezzatron/fake-geolocation",
"bugs": "https://github.com/ezzatron/fake-geolocation/issues",
"homepage": "https://github.com/ezzatron/fake-geolocation",
"author": "Erin Millard <contact@erin.id.au>",
"contributors": [
"Tima Mehro <timamehro@gmail.com>"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "artifacts/dist/index.js",
"types": "artifacts/dist/index.d.ts",
"exports": {
".": {
"types": "./artifacts/dist/index.d.ts",
"import": "./artifacts/dist/index.js",
"default": "./artifacts/dist/index.js"
}
},
"sideEffects": false,
"files": [
"/artifacts/dist/"
],
"scripts": {
"prepublishOnly": "tsc -p tsconfig.build.json"
},
"dependencies": {
"fake-permissions": "^0.19.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.0",
"@eslint/js": "^9.24.0",
"@skypack/package-check": "^0.2.2",
"@types/web": "^0.0.339",
"@vitest/coverage-v8": "^4.0.0",
"@vitest/eslint-plugin": "^1.1.39",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.0.0",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^4.0.0",
"publint": "^0.3.12",
"typedoc": "^0.28.3",
"typedoc-plugin-mdn-links": "^5.0.1",
"typescript": "^5.1.6",
"typescript-eslint": "^8.29.0",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "^4.0.0"
}
}