-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.84 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "node-insim",
"version": "6.7.0",
"description": "An InSim library for NodeJS with TypeScript support",
"keywords": [
"lfs",
"live for speed",
"insim",
"node",
"nodejs",
"node.js"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/simbroadcasts/node-insim.git"
},
"author": "Martin Kapal <flamecze@gmail.com>",
"contributors": [
"Peter Butcher <pete@pbutcher.uk> (https://pbutcher.uk)",
"Gedas Valuntis <xspeedasx@gmail.com>"
],
"license": "MIT",
"private": false,
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"typesVersions": {
"*": {
"packets": [
"./dist/types/packets/index.d.ts"
]
}
},
"files": [
"dist",
"!dist/types/protocols",
"!dist/types/decorators.d.ts",
"!dist/types/lfspack.d.ts",
"!dist/types/log.d.ts"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": "./dist/cjs/index.js",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
},
"./packets": {
"types": "./dist/types/packets/index.d.ts",
"node": "./dist/cjs/packets/index.js",
"require": "./dist/cjs/packets/index.js",
"import": "./dist/esm/packets/index.js",
"default": "./dist/esm/packets/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc -b ./src/tsconfig.cjs.json ./src/tsconfig.esm.json ./src/tsconfig.types.json",
"dev": "cross-env DEBUG=* tsx watch ./src/index.ts",
"dev:nodebug": "tsx watch ./src/index.ts",
"playground": "tsx watch ./playground/main.ts",
"test": "run-s test:compile \"test:run {@}\" --",
"test:compile": "tsc -p tsconfig.test.json",
"test:run": "vitest",
"test:lfs": "run-s test:compile \"test:run -c vitest.config.lfs.mts {@}\" --",
"test:examples": "node scripts/build-examples.cjs",
"check-all": "run-s format lint:fix build \"test --watch=false\" test:examples",
"format": "run-s \"format:no-write --write\"",
"format:no-write": "prettier \"./**/*.{cjs,js,ts,md,json,yml,yaml}\"",
"format:check": "run-s \"format:no-write -- --check\"",
"lint": "eslint \"./src/**/*\"",
"lint:fix": "eslint \"./src/**/*\" --fix",
"generate": "run-s \"generate:plop {@}\" lint:fix format --",
"generate:plop": "plop",
"docs:generate": "typedoc",
"prepublishOnly": "run-s format:check lint build \"test --watch=false\" test:examples",
"release": "changeset publish",
"local-release": "changeset version && changeset publish"
},
"dependencies": {
"@types/debug": "^4.1.13",
"@types/lodash.defaults": "^4.2.9",
"debug": "^4.4.3",
"lodash.defaults": "^4.2.0",
"parse-lfs-message": "1.3.0",
"reflect-metadata": "^0.2.2",
"supports-color": "^11.0.0",
"tiny-typed-emitter": "^2.1.0",
"unicode-to-lfs": "^2.0.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.1",
"@eslint/js": "^10.0.1",
"@types/ip": "^1.1.3",
"@types/jest": "^30.0.0",
"@types/mitm": "^1.3.8",
"@types/node": "^26.4.1",
"@typescript-eslint/eslint-plugin": "^8.69.0",
"@typescript-eslint/parser": "^8.69.0",
"@vitest/coverage-v8": "^5.0.0",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^10.10.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^14.0.0",
"globals": "^17.12.0",
"mitm": "^1.7.3",
"npm-run-all": "^4.1.5",
"plop": "^4.0.5",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"tsx": "^4.23.13",
"typedoc": "^0.28.20",
"typescript": "^6.0.3",
"vite": "^8.2.2",
"vitest": "^5.0.0"
},
"packageManager": "yarn@1.22.22+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}