-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.36 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
{
"name": "jsonld-sorter",
"version": "0.2.8",
"description": "Sorter of JSON-LD data",
"type": "module",
"engines": {
"node": ">=20"
},
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"jsonld-sorter": "dist/cli.js"
},
"scripts": {
"build": "npm-run-all build:*",
"build:src": "tsup",
"build:docs": "typedoc src/index.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roddolf/jsonld-sorter.git"
},
"keywords": [
"jsonld",
"sorter"
],
"author": "Rodolfo Aguirre <aguirreg.rodolfo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/roddolf/jsonld-sorter/issues"
},
"homepage": "https://github.com/roddolf/jsonld-sorter#readme",
"devDependencies": {
"@tsconfig/node20": "^20.1.9",
"@types/node": "^26.1.0",
"@types/yargs": "^17.0.13",
"@vitest/coverage-v8": "^4.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"tsup": "^8.5.1",
"typedoc": "^0.28.18",
"typescript": "~6.0",
"vitest": "^4.1.2"
},
"dependencies": {
"yargs": "^18.0.0"
},
"files": [
"dist"
]
}