@tanweilabs/daiti 0.0.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 ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@tanweilabs/daiti",
3
+ "version": "0.0.1",
4
+ "description": "代体:本地运行、通过网页和 IM 使用的个人助理。",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/tanweilabs/daiti.git"
10
+ },
11
+ "engines": {
12
+ "node": "^22.19.0 || >=24.0.0"
13
+ },
14
+ "bin": {
15
+ "daiti": "bin/daiti.mjs"
16
+ },
17
+ "files": [
18
+ "bin",
19
+ "lib",
20
+ "artifacts",
21
+ "README.md",
22
+ "LICENSE",
23
+ "THIRD_PARTY_NOTICES.md",
24
+ "docs",
25
+ "npm-shrinkwrap.json"
26
+ ],
27
+ "scripts": {
28
+ "build": "node scripts/build-plugins.mjs",
29
+ "test": "node --test tests/*.test.mjs packages/assistant-ui/tests/*.test.mjs",
30
+ "start": "node bin/daiti.mjs start",
31
+ "status": "node bin/daiti.mjs status",
32
+ "stop": "node bin/daiti.mjs stop",
33
+ "pack:local": "npm run build && npm pack --pack-destination .local/releases"
34
+ },
35
+ "dependencies": {
36
+ "@deepseek-ai/dsh": "0.1.6-alpha.2",
37
+ "pnpm": "11.19.0"
38
+ },
39
+ "devDependencies": {
40
+ "esbuild": "0.25.12"
41
+ },
42
+ "publishConfig": {
43
+ "access": "public",
44
+ "registry": "https://registry.npmjs.org/"
45
+ }
46
+ }