-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "@hyperjump/browser",
"version": "1.1.6",
"description": "Browse JSON-compatible data with hypermedia references",
"type": "module",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./jref": "./lib/jref/index.js"
},
"browser": {
"./lib/index.js": "./lib/index.browser.js",
"./lib/browser/context-uri.js": "./lib/browser/context-uri.browser.js"
},
"scripts": {
"clean": "xargs -a .gitignore rm -rf",
"lint": "eslint lib",
"test": "vitest --watch=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperjump-io/browser.git"
},
"keywords": [
"json",
"reference",
"jref",
"hypermedia",
"$ref"
],
"author": "Jason Desrosiers <[email protected]>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"devDependencies": {
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-import-resolver-exports": "*",
"eslint-import-resolver-node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"typescript": "*",
"undici": "*",
"vitest": "*"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@hyperjump/json-pointer": "^1.1.0",
"@hyperjump/uri": "^1.2.0",
"content-type": "^1.0.5",
"just-curry-it": "^5.3.0"
}
}