-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
65
66
67
68
69
70
{
"name": "smartcrdt",
"version": "1.0.0",
"description": "SuperInstance - Modular infrastructure for AI applications",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:ts && npm run build:native",
"build:ts": "tsc -b",
"build:native": "npm run build:native -w native",
"build:native:release": "npm run build:release -w native",
"clean": "rm -rf dist packages/*/dist",
"clean:deep": "npm run clean && rm -rf node_modules packages/*/node_modules",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --run tests/unit",
"test:e2e": "vitest run --run tests/e2e",
"bench": "node benchmarks/run.js",
"bench:report": "npm run bench -- --report",
"lint": "eslint packages --ext .ts",
"format": "prettier --write \"packages/**/*.ts\"",
"format:check": "prettier --check \"packages/**/*.ts\"",
"precommit": "lint-staged",
"prepare": "husky install",
"docs:generate": "node scripts/generate-docs.cjs",
"docs:serve": "npx serve docs/api",
"docs:watch": "node scripts/generate-docs.cjs --watch"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"keywords": [
"ai",
"infrastructure",
"routing",
"cache",
"privacy",
"embeddings",
"modular",
"components"
],
"author": "SuperInstance",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SuperInstance/SmartCRDT"
},
"bugs": {
"url": "https://github.com/SuperInstance/SmartCRDT/issues"
},
"homepage": "https://github.com/SuperInstance/SmartCRDT#readme"
}