-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 905 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
{
"name": "@fatherbrennan/api",
"version": "1.1.1",
"description": "API by yours truly.",
"author": "fatherbrennan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fatherbrennan/api.git"
},
"trustedDependencies-annotation": "Needed for bun to allow running install scripts",
"type": "module",
"eslintConfig": {
"parserOptions": {
"sourceType": "module"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"test": "bun test --watch",
"build": "tsup",
"publish": "bun run build && npm publish"
},
"devDependencies": {
"@types/bun": "^1.1.10",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"typescript": "5.4.5"
}
}