-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "@cloudmatelabs/jsonld-helper",
"version": "1.3.0",
"description": "JSON-LD Helper",
"homepage": "https://github.com/cloudmatelabs/jsonld-helper-ts",
"repository": "cloudmatelabs/jsonld-helper-ts",
"license": "MIT",
"author": "juunini",
"source": "./src/index.ts",
"main": "./dist/main.js",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"devDependencies": {
"@parcel/packager-ts": "2.9.3",
"@parcel/transformer-typescript-types": "^2.9.3",
"@types/jsonld": "^1.5.10",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"bun-types": "latest",
"eslint": "^8.50.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"parcel": "^2.9.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"jsonld": "^8.3.1"
},
"scripts": {
"build": "parcel build",
"lint": "eslint --ext .ts ."
},
"targets": {
"main": {
"isLibrary": true,
"optimize": true
},
"module": {
"isLibrary": true,
"outputFormat": "esmodule",
"optimize": true
}
},
"dependencies": {
"jsonld": "^8.3.1"
}
}