-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.21 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "scientify",
"version": "3.4.0",
"description": "Scientify - AI-powered research workflow automation for OpenClaw. Includes idea generation, literature review, research pipeline skills, and arxiv tool.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"skills",
"openclaw.plugin.json"
],
"keywords": [
"openclaw",
"openclaw-plugin",
"research",
"arxiv",
"academic",
"literature-review",
"idea-generation"
],
"author": "tsingyuai",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsingyuai/scientify.git"
},
"homepage": "https://github.com/tsingyuai/scientify#readme",
"bugs": {
"url": "https://github.com/tsingyuai/scientify/issues"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"dev": "tsc --watch",
"dev:link": "npm run build && rm -rf ~/.openclaw/extensions/scientify && ln -sfn \"$(pwd)\" ~/.openclaw/extensions/scientify",
"dev:unlink": "rm -f ~/.openclaw/extensions/scientify",
"dev:reload": "nodemon --watch src --watch skills --ext ts,md,json --exec \"npm run build && pkill -USR1 -f 'openclaw.mjs gateway' || true\" --delay 500ms",
"prepublishOnly": "npm run clean && npm run build",
"release": "npm version patch && git push && git push --tags"
},
"dependencies": {
"@sinclair/typebox": "^0.32.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.3",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^20.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"nodemon": "^3.1.11",
"semantic-release": "^25.0.3",
"typescript": "^5.3.0"
},
"peerDependencies": {
"openclaw": ">=2024.0.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": "2026.3.24-beta.2"
},
"build": {
"openclawVersion": "2026.4.2",
"pluginSdkVersion": "2026.3.24-beta.2"
}
}
}