-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 850 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 850 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
{
"name": "@contentsgarten/client-utils",
"version": "2.0.0",
"description": "Utility functions for contentsgarten",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"dev": "pnpm run build --watch"
},
"keywords": [],
"author": "Thai Pangsakulyanont <dtinth@spacet.me>",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@tsconfig/node18": "^18.0.0",
"@types/node": "^20.0.0",
"contentsgarten": "workspace:*",
"firebase": "^10.0.0",
"tsup": "^8.0.0",
"typescript": "5"
},
"peerDependencies": {
"firebase": "^9.18.0 || ^10.0.0"
},
"repository": {
"url": "git+https://github.com/creatorsgarten/contentsgarten"
}
}