-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "neuri",
"type": "module",
"version": "0.0.19",
"private": true,
"packageManager": "[email protected]",
"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": "[email protected]",
"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": {
"stub": "pnpm -r --filter=./packages/* --parallel run stub",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"docs:dev": "pnpm -r --filter=./docs run dev",
"docs:build": "pnpm -r --filter=./docs run build",
"docs:preview": "pnpm -r --filter=./docs run preview",
"packages:dev": "pnpm -r --filter=./packages/* run dev",
"packages:stub": "pnpm -r --filter=./packages/* run stub",
"packages:build": "pnpm -r --filter=./packages/* run build",
"packages:publish": "pnpm -r --filter=./packages/* run package:publish",
"cleanup:dist": "rimraf --glob **/dist",
"cleanup:node_modules": "rimraf --glob **/node_modules",
"test": "vitest --coverage",
"test:ui": "vitest --ui --coverage --coverage.enabled=true",
"test:run": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@antfu/ni": "^0.23.2",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "2.1.8",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"typescript": "^5.7.2",
"unbuild": "3.0.0-rc.11",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"workspaces": [
"packages/*",
"docs"
]
}