-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 959 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
{
"name": "dotbrk",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"scripts": {
"dev": "tsup src/index.ts && node dist/index.js",
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"test": "jest --watchAll --verbose",
"lint": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/dragonismcode/dotbrk.git"
},
"contributors": [
{
"name": "Jake",
"url": "https://gitlab.com/Meta_Data"
}
],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.4.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/dragonismcode/dotbrk/issues"
},
"homepage": "https://github.com/dragonismcode/dotbrk#readme"
}