-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.07 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.07 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
{
"name": "neuri",
"type": "module",
"version": "0.2.1",
"private": true,
"packageManager": "pnpm@10.28.2",
"description": "Simple and easy agent framework, include various of structured data manipulation, agent and function compositing, code editing, fs and more!",
"author": {
"name": "Lingtic.io Neuri Team",
"email": "neuridev@lingtic.io",
"url": "https://github.com/neuridev"
},
"license": "MIT",
"homepage": "https://docs.neuri.dev/pages/en/",
"repository": "git+https://github.com/neuridev/neuri-js.git",
"keywords": [
"guiiai",
"llm",
"openai",
"lingtic",
"neuri"
],
"scripts": {
"dev:docs": "pnpm -r -F=./docs run dev",
"dev:packages": "pnpm -r -F=./packages/* run dev",
"stub": "pnpm -r -F=./packages/* --parallel run stub",
"stub:packages": "pnpm -r -F=./packages/* run stub",
"build:docs": "pnpm -r -F=./docs run build",
"build:packages": "pnpm -r -F=./packages/* run build",
"preview:docs": "pnpm -r -F=./docs run preview",
"publish:packages": "pnpm -r -F=./packages/* run publish:package",
"attw:packages": "pnpm -r -F=./packages/* run attw",
"test": "vitest --coverage",
"test:ui": "vitest --ui --coverage --coverage.enabled=true",
"test:run": "vitest run",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"typecheck": "pnpm -r -F=./packages/* run typecheck",
"up": "pnpx taze -w -r -I -f && pnpm prune && pnpm dedupe",
"changelogithub": "changelogithub"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@arethetypeswrong/cli": "catalog:",
"@arethetypeswrong/core": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"bumpp": "catalog:",
"changelogithub": "catalog:",
"eslint": "catalog:",
"eslint-plugin-import-x": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"unplugin-unused": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"workspaces": [
"packages/*",
"docs"
]
}