-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jsfitsio",
"description": "FITS I/O javascript library.",
"version": "1.1.15",
"keywords": [
"FITS",
"FITS I/O",
"FITS in a browser"
],
"author": "Fabrizio Giordano (fab77)",
"license": "MIT",
"homepage": "https://github.com/fab77/FITSParser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fab77/FITSParser.git"
},
"bugs": {
"url": "https://github.com/fab77/FITSParser/issues",
"email": "[email protected]"
},
"type": "module",
"exports": {
".": {
"types": "./lib-esm/index.d.ts",
"import": "./lib-esm/index.js",
"require": "./_bundles/jsfitsio.js"
}
},
"main": "./lib-esm/index.js",
"types": "./lib-esm/index.d.ts",
"files": [
"lib-esm/",
"_bundles"
],
"scripts": {
"clean": "shx rm -rf _bundles lib-esm",
"start:dev": "npm run clean && tsc && webpack --mode=development --watch --progress; cp _bundles/* webtest/",
"build:prod": "npm run clean && tsc && webpack --mode=production",
"webtest": "cp _bundles/* webtest/; node server.cjs",
"test:esm": "tsc -m es6 test.ts; node test.js"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.3",
"@types/node": "^18.7.23",
"shx": "^0.3.4",
"ts-loader": "^9.4.0",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"fs": "^0.0.1-security"
}
,
"browser": {
"fs": false,
"node:fs/promises": false,
"node:fs": false,
"fs/promises": false
}
}