-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 854 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 854 Bytes
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
{
"name": "@objectstack/core",
"version": "4.0.3",
"license": "Apache-2.0",
"description": "Microkernel Core for ObjectStack",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup --config ../../tsup.config.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"dependencies": {
"@objectstack/spec": "workspace:*",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"zod": "^4.3.6"
},
"peerDependencies": {
"pino": "^8.0.0"
},
"peerDependenciesMeta": {
"pino": {
"optional": true
}
}
}