scientify 1.7.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scientify",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "Scientify - AI-powered research workflow automation for OpenClaw. Includes idea generation, literature review, research pipeline skills, and arxiv tool.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,6 +29,16 @@
|
|
|
29
29
|
"bugs": {
|
|
30
30
|
"url": "https://github.com/tsingyuai/scientify/issues"
|
|
31
31
|
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsc",
|
|
34
|
+
"clean": "rm -rf dist",
|
|
35
|
+
"dev": "tsc --watch",
|
|
36
|
+
"dev:link": "npm run build && rm -rf ~/.openclaw/extensions/scientify && ln -sfn \"$(pwd)\" ~/.openclaw/extensions/scientify",
|
|
37
|
+
"dev:unlink": "rm -f ~/.openclaw/extensions/scientify",
|
|
38
|
+
"dev:reload": "nodemon --watch src --watch skills --ext ts,md,json --exec \"npm run build && pkill -USR1 -f 'openclaw.mjs gateway' || true\" --delay 500ms",
|
|
39
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
40
|
+
"release": "npm version patch && git push && git push --tags"
|
|
41
|
+
},
|
|
32
42
|
"devDependencies": {
|
|
33
43
|
"@semantic-release/changelog": "^6.0.3",
|
|
34
44
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
@@ -51,14 +61,5 @@
|
|
|
51
61
|
"extensions": [
|
|
52
62
|
"./dist/index.js"
|
|
53
63
|
]
|
|
54
|
-
},
|
|
55
|
-
"scripts": {
|
|
56
|
-
"build": "tsc",
|
|
57
|
-
"clean": "rm -rf dist",
|
|
58
|
-
"dev": "tsc --watch",
|
|
59
|
-
"dev:link": "npm run build && rm -rf ~/.openclaw/extensions/scientify && ln -sfn \"$(pwd)\" ~/.openclaw/extensions/scientify",
|
|
60
|
-
"dev:unlink": "rm -f ~/.openclaw/extensions/scientify",
|
|
61
|
-
"dev:reload": "nodemon --watch src --watch skills --ext ts,md,json --exec \"npm run build && pkill -USR1 -f 'openclaw.mjs gateway' || true\" --delay 500ms",
|
|
62
|
-
"release": "npm version patch && git push && git push --tags"
|
|
63
64
|
}
|
|
64
|
-
}
|
|
65
|
+
}
|