-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "solid-agent",
"version": "0.0.0",
"description": "A rule-based intelligent software agent (on top of Personal Data Stores)",
"keywords": [
"agent",
"solid",
"linked-data"
],
"contributors": [
"Wout Slabbinck <[email protected]>"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "[email protected]:woutslabbinck/Solid-Agent.git",
"bugs": {
"url": "https://github.com/woutslabbinck/Solid-Agent/issues"
},
"scripts": {
"build": "rm -r ./dist && npm run build:ts",
"build:ts": "tsc",
"prepare": "npm run build:ts",
"release": "npm run build && npm publish --access public"
},
"dependencies": {
"@solid/community-server": "^6.0.0",
"@types/node": "^18.14.6",
"@types/node-fetch": "^2.6.2",
"cron": "^2.3.1",
"dotenv": "^16.0.3",
"koreografeye": "^0.3.2",
"n3": "^1.16.3",
"node-fetch": "^2.6.9",
"solid-notification-client": "^0.0.3"
},
"devDependencies": {
"@types/cron": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
}
}