-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.98 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.98 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
{
"name": "@objectstack/platform-objects",
"version": "0.1.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"
},
"./tenant": {
"types": "./dist/tenant/index.d.ts",
"import": "./dist/tenant/index.mjs",
"require": "./dist/tenant/index.js"
},
"./metadata": {
"types": "./dist/metadata/index.d.ts",
"import": "./dist/metadata/index.mjs",
"require": "./dist/metadata/index.js"
}
},
"scripts": {
"build": "tsup",
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@objectstack/spec": "workspace:*"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsup": "^8.5.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"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"
}
}