-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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": "poto-siril",
"version": "0.4.0",
"description": "Automatization around Siril (<https://siril.org/>) and ASIAIR for deep sky astrophotography.",
"main": "poto.sh",
"type": "module",
"scripts": {
"lint": "eslint .",
"check-types": "tsc",
"test": "TZ=UTC node --experimental-vm-modules node_modules/.bin/jest --coverage src",
"test-cli": "./poto.sh --version",
"dev-test": "TZ=UTC node --experimental-vm-modules node_modules/.bin/jest --coverage --watch src",
"dev-spawn-ds1": "tsx ./scripts/dev-spawn-ds1.ts",
"dev-prepare-ds1": "npm run dev-spawn-ds1 && TZ=UTC ./poto.sh prepare -i tmp/asiair-dump -i tmp/bank tmp/project",
"dev-preprocess-ds1": "TZ=UTC ./poto.sh preprocess -t src/process/mono_processing_process/1_preprocessing.ssf tmp/project"
},
"keywords": [
"siril",
"asiair",
"zwo",
"astrophotography",
"astro",
"deepsky"
],
"author": "JorisLacance.fr",
"license": "GPL-3.0-only",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"tsx": "^4.19.2"
},
"dependencies": {
"ansi-escapes": "^7.0.0",
"chalk": "^5.4.1",
"commander": "^12.1.0",
"enquirer": "^2.4.1",
"execa": "^9.5.2"
}
}