-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.ts
More file actions
43 lines (40 loc) · 943 Bytes
/
package.ts
File metadata and controls
43 lines (40 loc) · 943 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
import { BunPm, definePackage } from '@opk/ts-pkg'
export default definePackage({
pm: BunPm,
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',
},
scriptPresets: ['prettier'],
scripts: {
build: 'tsdown',
dev: 'tsdown --watch',
typecheck: 'tsc --noEmit',
prePublishOnly: 'bun run build',
},
type: 'module',
main: 'src/index.ts',
files: ['dist'],
types: 'dist/index.d.mts',
exports: {
'.': {
types: './dist/index.d.mts',
},
},
devDependencies: {
'@opk/ts-pkg': '^0.6.1',
prettier: '^3.8.1',
tsdown: '^0.21.7',
},
})