-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.99 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@solidlab/uma-css",
"version": "0.1.0",
"description": "UMA authorization plugin for CommunitySolidServer.",
"keywords": [
"css",
"solid",
"community solid server",
"solid community server",
"uma",
"user managed access",
"access control",
"authorization",
"policies",
"grants"
],
"author": {
"name": "Wouter Termont",
"email": "wouter.termont@ugent.be",
"url": "https://wouter.termont.online/"
},
"license": "MIT",
"repository": "github:SolidLabResearch/user-managed-access",
"homepage": "https://github.com/SolidLabResearch/user-managed-access/README.md",
"bugs": "https://github.com/SolidLabResearch/user-managed-access/issues",
"contributors": [
{
"name": "Wout Slabbink",
"email": "wout.slabbink@ugent.be",
"url": "https://pod.woutslabbinck.com/profile/card#me"
},
{
"name": "Wouter Termont",
"email": "wouter.termont@ugent.be",
"url": "https://wouter.termont.online/"
}
],
"private": true,
"packageManager": "yarn@4.9.2",
"engines": {
"node": ">=20.0",
"yarn": ">=4.0"
},
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"files": [
".componentsignore",
"dist",
"config"
],
"scripts": {
"build": "yarn build:ts && yarn build:components",
"build:ts": "yarn run -T tsc",
"build:components": "yarn run -T componentsjs-generator -r uma-css -s src/ -c dist/components -i .componentsignore --lenient",
"start:unseeded": "yarn run community-solid-server -m . -c ./config/default.json -a http://localhost:4000/",
"start": "yarn run community-solid-server -m . -c ./config/default.json --seedConfig ./config/seed.json -a http://localhost:4000/",
"demo": "yarn run demo:setup && yarn run demo:start",
"demo:setup": "yarn run -T shx rm -rf ./tmp && yarn run -T shx cp -R ../../demo/data ./tmp",
"demo:start": "yarn run community-solid-server -m . -c ./config/demo.json -f ./tmp -a http://localhost:4000/"
},
"dependencies": {
"@solid/community-server": "^7.1.7",
"@solidlab/uma": "workspace:^",
"@types/n3": "^1.16.4",
"componentsjs": "^5.5.1",
"fetch-retry": "^6.0.0",
"http-message-signatures": "^1.0.4",
"jose": "^5.2.2",
"n3": "^1.17.2"
},
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma-css",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma-css/^0.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma-css/^0.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma-css/^0.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/@solidlab/uma-css/^0.0.0/dist/": "dist/"
}
}