-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.56 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
{
"name": "@opensaas/stack-core",
"version": "0.19.1",
"description": "Core stack for OpenSaas - schema definition, access control, and runtime utilities",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./fields": {
"types": "./dist/fields/index.d.ts",
"default": "./dist/fields/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"default": "./dist/mcp/index.js"
},
"./config/plugin-engine": {
"types": "./dist/config/plugin-engine.d.ts",
"default": "./dist/config/plugin-engine.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"clean": "rm -rf .turbo dist tsconfig.tsbuildinfo"
},
"keywords": [
"opensaas",
"nextjs",
"prisma",
"admin"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OpenSaasAU/stack.git",
"directory": "packages/core"
},
"homepage": "https://stack.opensaas.au",
"bugs": {
"url": "https://github.com/OpenSaasAU/stack/issues"
},
"peerDependencies": {
"@prisma/client": "^6.17.0 || ^7.0.0"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"zod": "^4.1.13"
},
"devDependencies": {
"@prisma/client": "^7.1.0",
"@types/node": "^24.11.0",
"@vitest/coverage-v8": "^4.0.15",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}