-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.01 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
{
"name": "css-profile-handler",
"version": "7.0.0",
"description": "A Community Solid Server module for managing user profiles",
"repository": {
"type": "git",
"url": "https://github.com/theodi/css-profile-handler.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"lsd:module": "https://linkedsoftwaredependencies.org/bundles/npm/css-profile-handler",
"lsd:components": "dist/components/components.jsonld",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/css-profile-handler/^7.0.0/components/context.jsonld": "dist/components/context.jsonld"
},
"lsd:importPaths": {
"https://linkedsoftwaredependencies.org/bundles/npm/css-profile-handler/^7.0.0/components/": "dist/components/",
"https://linkedsoftwaredependencies.org/bundles/npm/css-profile-handler/^7.0.0/config/": "config/",
"https://linkedsoftwaredependencies.org/bundles/npm/css-profile-handler/^7.0.0/dist/": "dist/"
},
"scripts": {
"start": "community-solid-server -c @css:config/file.json profile-handler-partial.json -f .data -m .",
"start-alt": "community-solid-server -c profile-handler-file.json -f .data -m .",
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s src -c dist/components -i .componentsignore -r profile-handler",
"build:ts": "tsc",
"prepare": "npm run build",
"test": "jest"
},
"files": [
"dist",
"config",
"templates"
],
"keywords": [
"solid",
"community-solid-server",
"css",
"profile",
"webid",
"rdf",
"componentsjs"
],
"dependencies": {
"@solid/community-server": "^7.0.3",
"n3": "^1.17.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.12",
"@types/n3": "^1.16.3",
"@types/uuid": "^9.0.5",
"componentsjs-generator": "^3.1.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}