-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 962 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 962 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
41
42
43
44
45
{
"name": "@bygnet/types",
"version": "1.8.0",
"description": "Byg Platform's types for posts, images, and more, for Byg devs and the community.",
"keywords": [
"social-network",
"typescript",
"types",
"byg"
],
"license": "Apache-2.0",
"author": {
"name": "ash",
"email": "ash@a35.dev",
"url": "https://a35.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BygNet/Types.git"
},
"type": "module",
"main": "src/index.ts",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts"
}
},
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"prePublishOnly": "bun run build"
},
"devDependencies": {
"@opk/ts-pkg": "^0.6.1",
"prettier": "^3.8.1",
"tsdown": "^0.21.7"
}
}