-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "webid-search",
"version": "1.0.0",
"description": "A crawler to discover and store Solid WebIDs",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build:tsc": "tsc",
"build:ldo": "ldo build --input ./shapes --output ./src/ldo",
"crawl": "tsx src/crawler.ts",
"build:data": "tsx src/prepareData.ts",
"build:next": "next build",
"build": "npm run build:ldo && npm run build:tsc && npm run build:data && npm run build:next",
"dev": "next dev",
"start": "next start"
},
"keywords": [
"solid",
"webid",
"crawler",
"rdf",
"linked-data"
],
"author": "",
"license": "MIT",
"dependencies": {
"@jeswr/pretty-turtle": "^1.8.2",
"@ldo/ldo": "^1.0.0-alpha.32",
"jsonld": "^9.0.0",
"next": "16.0.10",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@ldo/cli": "^1.0.0-alpha.32",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.10.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"tailwindcss": "^4",
"tsx": "^4.6.2",
"typescript": "^5.3.2"
}
}