-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@pod-os/core",
"version": "0.13.0",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
"files": [
"lib/",
"dist/",
"types/"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./src",
"build:bundle": "rimraf lib && node esbuild/build-bundle.mjs",
"build:esm": "rimraf dist && node esbuild/build-esm.mjs",
"build:types": "rimraf types && tsc --emitDeclarationOnly --outDir types",
"build:watch": "node esbuild/watch-esm.mjs",
"build": " npm run build:bundle && npm run build:types && npm run build:esm"
},
"keywords": [
"Solid"
],
"author": "Angelo Veltens",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.18.0",
"@types/jest": "^29.5.14",
"@types/jest-when": "^3.5.5",
"@types/sparqljs": "^3.1.12",
"esbuild": "^0.24.2",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"jest-when": "^3.7.0",
"prettier": "^3.4.2",
"rdf-namespaces": "^1.12.0",
"rimraf": "^6.0.1",
"sparqljs": "^3.7.3",
"typescript": "5.7.3",
"typescript-eslint": "^7.18.0"
},
"dependencies": {
"@inrupt/solid-client-authn-browser": "^2.3.0",
"@solid-data-modules/contacts-rdflib": "^0.7.0",
"@solid-data-modules/rdflib-utils": "^0.5.0",
"@types/lunr": "^2.3.7",
"buffer": "^6.0.3",
"lunr": "^2.3.9",
"rdflib": "^2.2.35",
"rxjs": "^7.8.1",
"slugify": "^1.6.6",
"url": "^0.11.4"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pod-os/pod-os.git"
},
"bugs": {
"url": "https://github.com/pod-os/pod-os/issues"
},
"homepage": "https://github.com/pod-os/pod-os#readme",
"description": ""
}