-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 801 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 801 Bytes
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
{
"name": "parse-sng",
"version": "4.0.3",
"description": "A library that parses the .sng file format.",
"author": "Geo",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"lint": "tsc",
"test": "tsx --trace-warnings ./test.ts"
},
"dependencies": {
"binary-parser": "^2.2.1",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/events": "^3.0.0",
"@types/node": "^20.10.0",
"@types/yargs": "^17.0.34",
"sanitize-filename": "^1.6.3",
"tsup": "^7.2.0",
"tsx": "^4.16.2",
"typescript": "^5.2.2",
"yargs": "^18.0.0"
}
}