-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@objectstack/platform-objects",
"version": "13.0.0",
"license": "Apache-2.0",
"description": "Core platform object schemas for ObjectStack — identity, security, audit, tenant, and metadata objects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./identity": {
"types": "./dist/identity/index.d.ts",
"import": "./dist/identity/index.mjs",
"require": "./dist/identity/index.js"
},
"./security": {
"types": "./dist/security/index.d.ts",
"import": "./dist/security/index.mjs",
"require": "./dist/security/index.js"
},
"./audit": {
"types": "./dist/audit/index.d.ts",
"import": "./dist/audit/index.mjs",
"require": "./dist/audit/index.js"
},
"./integration": {
"types": "./dist/integration/index.d.ts",
"import": "./dist/integration/index.mjs",
"require": "./dist/integration/index.js"
},
"./metadata": {
"types": "./dist/metadata/index.d.ts",
"import": "./dist/metadata/index.mjs",
"require": "./dist/metadata/index.js"
},
"./system": {
"types": "./dist/system/index.d.ts",
"import": "./dist/system/index.mjs",
"require": "./dist/system/index.js"
},
"./apps": {
"types": "./dist/apps/index.d.ts",
"import": "./dist/apps/index.mjs",
"require": "./dist/apps/index.js"
},
"./pages": {
"types": "./dist/pages/index.d.ts",
"import": "./dist/pages/index.mjs",
"require": "./dist/pages/index.js"
},
"./metadata-translations": {
"types": "./dist/metadata-translations/index.d.ts",
"import": "./dist/metadata-translations/index.mjs",
"require": "./dist/metadata-translations/index.js"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.mjs",
"require": "./dist/plugin.js"
}
},
"scripts": {
"build": "tsup",
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@objectstack/metadata-core": "workspace:*",
"@objectstack/spec": "workspace:*"
},
"devDependencies": {
"@types/node": "^26.1.0",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"keywords": [
"objectstack",
"platform-objects",
"schema",
"identity",
"security",
"tenant"
],
"author": "ObjectStack",
"repository": {
"type": "git",
"url": "https://github.com/objectstack-ai/framework.git",
"directory": "packages/platform-objects"
},
"homepage": "https://objectstack.ai/docs",
"bugs": "https://github.com/objectstack-ai/framework/issues",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18.0.0"
}
}