-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 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
{
"name": "@location-proofs/plugin-proofmode",
"version": "0.1.0-alpha.0",
"description": "ProofMode location proof plugin for Astral SDK",
"license": "MIT",
"author": "Astral Protocol",
"repository": {
"type": "git",
"url": "git+https://github.com/location-proofs/plugin-proofmode.git"
},
"homepage": "https://github.com/location-proofs/plugin-proofmode#readme",
"bugs": {
"url": "https://github.com/location-proofs/plugin-proofmode/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": ["dist"],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint \"src/**/*.ts\"",
"lint-fix": "eslint \"src/**/*.ts\" --fix"
},
"peerDependencies": {
"@decentralized-geo/astral-sdk": ">=0.2.0"
},
"dependencies": {
"fflate": "^0.8.2"
},
"devDependencies": {
"@decentralized-geo/astral-sdk": "file:../astral-sdk",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}