-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.59 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-bashlib",
"version": "0.6.5",
"description": "",
"main": "dist/index.js",
"bin": {
"sld": "bin/solid.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist/ && tsc",
"bundle": "npx esbuild bin/solid.js --bundle --platform=node --outfile=bin/bundled.js",
"prepare": "npm run build; npm run bundle",
"release": "release-it",
"mkdocs": "pip install mkdocs mkdocs-material && mkdocs serve -f documentation/mkdocs.yml",
"typedocs": "typedoc --customCss ./documentation/typedoc.css",
"typedocs:dev": "typedoc --customCss ./documentation/typedoc.css; live-server docs/",
"updatesite": "npm run typedocs; mkdocs gh-deploy -f documentation/mkdocs.yml"
},
"author": "",
"license": "ISC",
"dependencies": {
"@comunica/query-sparql": "^2.1.0",
"@inrupt/solid-client": "1.26.0",
"@inrupt/solid-client-authn-node": "^1.14.0",
"chalk": "^4.1.2",
"cli-columns": "^4.0.0",
"cli-select": "^1.1.2",
"cli-table": "^0.3.11",
"commander": "^13.0.0",
"cross-fetch": "^3.1.5",
"express": "^4.17.3",
"form-urlencoded": "^6.0.6",
"http-link-header": "^1.0.4",
"inquirer": "^8.2.4",
"jose": "^4.7.0",
"jwt-decode": "^3.1.2",
"md5": "^2.3.0",
"mime-types": "^2.1.35",
"open": "^8.4.0",
"set-cookie-parser": "^2.4.8"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/inquirer": "^8.2.1",
"@types/mime-types": "^2.1.4",
"live-server": "^1.2.2",
"release-it": "^15.5.0",
"typedoc": "^0.23.27",
"typescript": "^4.9.3"
}
}