-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@observerly/fits",
"version": "0.1.0",
"description": "fits is observerly's zero-dependency library for reading images stored in the FITS astronomical format written in Typescript.",
"repository": {
"type": "git",
"url": "git+https://github.com/observerly/fits.git"
},
"author": "Micheal J. Roberts",
"prepublish": "tsc",
"publishConfig": {
"registry": "https://npm.pkg.github.com/observerly"
},
"type": "module",
"files": ["dist"],
"main": "./dist/fits.umd.cjs",
"module": "./dist/fits.js",
"exports": {
".": {
"import": "./dist/fits.js",
"require": "./dist/fits.umd.cjs"
}
},
"types": "./dist/index.d.ts",
"release": {
"branches": ["main"]
},
"os": ["darwin", "linux"],
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "tsup",
"format": "npx @biomejs/biome format --write",
"lint": "npx @biomejs/biome lint --write",
"preview": "vite preview",
"test": "vitest"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "^20.4.5",
"@vitest/coverage-v8": "^2.1.8",
"canvas": "^3.0.1",
"happy-dom": "^10.5.2",
"tslib": "^2.6.1",
"tsup": "^8.3.5",
"typescript": "^5.1.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
}
}