-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.55 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
{
"name": "@codewavebr/wavecore",
"version": "0.1.0",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/codewavebr/wavecore.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./auth": {
"types": "./dist/auth/index.d.ts",
"import": "./dist/auth/index.js"
},
"./billing": {
"types": "./dist/billing/index.d.ts",
"import": "./dist/billing/index.js"
},
"./config": {
"types": "./dist/config/index.d.ts",
"import": "./dist/config/index.js"
},
"./tenant": {
"types": "./dist/tenant/index.d.ts",
"import": "./dist/tenant/index.js"
},
"./next": {
"types": "./dist/next.d.ts",
"import": "./dist/next.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "tsx --test \"tests/**/*.test.ts\"",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"date-fns": "^4.0.0",
"next": ">=15",
"server-only": ">=0.0.1",
"zod": "^3.25.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
},
"server-only": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.9.0",
"date-fns": "^4.1.0",
"next": "15.4.10",
"tsx": "^4.19.4",
"typescript": "^5.2.2",
"zod": "^3.25.0"
}
}