-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 898 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 898 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
{
"name": "@bygnet/types",
"version": "1.3.2",
"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.ts",
"exports": {
".": {
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@a35hie/ts-pkg": "^0.3.1",
"prettier": "^3.8.1"
}
}