-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "gsl-parser",
"version": "3.0.1",
"description": "Parse GSL format NOAA RUC soundings",
"type": "module",
"main": "./dist/index.js",
"author": "Alexander Harding <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aeharding/gsl-parser.git"
},
"scripts": {
"build": "pnpm clean; tsc",
"clean": "rm -rf ./dist",
"start": "pnpm exec tsx .",
"check-types": "tsc --noEmit",
"check-formatting": "prettier --check '**/*.{js,json,css,md,scss,tsx,ts}'",
"watch": "watch 'pnpm build' lib",
"test": "TZ=UTC ./test.sh",
"prepublishOnly": "pnpm build",
"upgrade:packageManager": "corepack use pnpm@latest"
},
"files": [
"dist",
"assets"
],
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0",
"prettier": "^3.2.5",
"tsx": "^4.9.1",
"typescript": "^5.4.5",
"watch": "^1.0.2"
},
"packageManager": "[email protected]+sha256.0624e30eff866cdeb363b15061bdb7fd9425b17bc1bb42c22f5f4efdea21f6b3"
}