-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "@nousdev/core",
"version": "0.2.0",
"description": "Nous core engine: transform pipeline, plugin system, build orchestration",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist .turbo *.tsbuildinfo"
},
"dependencies": {
"@nousdev/types": "workspace:*"
},
"devDependencies": {
"typescript": "^5.8.0",
"vitest": "^3.2.4"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/salmad3/nousdev.git",
"directory": "packages/core"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/salmad3/nousdev/tree/main/packages/core",
"bugs": {
"url": "https://github.com/salmad3/nousdev/issues"
},
"keywords": [
"nous",
"documentation",
"knowledge-infrastructure",
"agent-readability"
]
}