-
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) · 1022 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1022 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": "antcal",
"version": "0.13.4",
"description": "Antenna Calculator",
"author": "Atlanswer <i@atlanswer.com> (https://atlanswer.com)",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"homepage": "https://antcal.atlanswer.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/atlanswer/AntCal.git"
},
"bugs": {
"url": "https://github.com/atlanswer/AntCal/issues"
},
"scripts": {
"dev": "bun turbo dev",
"check": "bun turbo check",
"build": "bun turbo build",
"preview": "bun turbo preview"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.9.5",
"typescript": "^6.0.2"
},
"prettier": {
"experimentalTernaries": true,
"experimentalOperatorPosition": "start"
},
"packageManager": "bun@1.3.11",
"engines": {
"bun": ">=1.3"
}
}