-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "@psysecgroup/current-thing-weather",
"description": "Detects the Current Thing before it becomes the Current Thing.",
"version": "1.0.0",
"author": "The PsySec Group",
"license": "MIT",
"bugs": {
"url": "https://github.com/PsySecGroup/current-thing-weather/issues"
},
"homepage": "https://github.com/PsySecGroup/current-thing-weather#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PsySecGroup/current-thing-weather.git"
},
"scripts": {
"start": "node dist/index.js",
"dev": "npx tsx watch src/index.ts",
"lint": "npx tsc --noEmit && npx eslint src/index.ts",
"test": "npx uvu -r esbuild-register tests/",
"build": "npx esbuild src/index.ts --bundle --platform=node --minify --outfile=dist/index.js",
"compile": "npm run lint && npm run test && npm run build"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./src/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@types/node": "^20.14.1",
"esbuild": "^0.21.4",
"esbuild-register": "^3.5.0",
"eslint": "9.x",
"globals": "^15.3.0",
"tsx": "^4.11.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0",
"uvu": "^0.5.6"
},
"dependencies": {
"@psysecgroup/threaded-sqlite-write": "https://github.com/psysecgroup/threaded-sqlite-write",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"unzipper": "^0.11.6"
}
}