-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.63 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
{
"name": "@solid/content-moderation-sightengine",
"version": "2.0.0",
"description": "Content moderation plugin for Community Solid Server using SightEngine API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/content-moderation-sightengine",
"lsd:components": "components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/content-moderation-sightengine/^1.0.0/components/context.jsonld": "components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/content-moderation-sightengine/^1.0.0/components/": "components/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/content-moderation-sightengine/^1.0.0/config/": "config/"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:unit": "jest --testPathPatterns=test/unit",
"test:integration": "jest --testPathPatterns=test/integration",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [
"solid",
"css",
"moderation",
"plugin"
],
"author": "Kwaku Kuffour-Duah",
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/theodi/cms-solid"
},
"dependencies": {
"@solid/community-server": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^18.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0"
},
"overrides": {
"fast-xml-parser": ">=5.3.4"
}
}