-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 917 Bytes
/
package.json
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
{
"name": "@galactiks/contentlayer",
"version": "0.2.5",
"description": "Galactiks contentlayer configurations",
"author": "galactiks",
"type": "module",
"types": "./dist/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/thegalactiks/explorer/issues",
"repository": {
"type": "git",
"url": "https://github.com/thegalactiks/explorer.git",
"directory": "packages/contentlayer"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"build:ci": "tsc -p ./tsconfig.json"
},
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./fields": "./dist/fields/index.js"
},
"files": [
"dist"
],
"keywords": [
"galactiks",
"contentlayer"
],
"devDependencies": {
"contentlayer": "0.3.4"
},
"peerDependencies": {
"contentlayer": "~0.3"
}
}