-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 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
{
"name": "@wayward/goodstream",
"description": "Value streaming made as convenient as possible.",
"version": "0.10.0",
"license": "MIT",
"main": "Stream.js",
"types": "./Stream.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/WaywardGame/goodstream"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npx ts-node tasks/utilities/TaskRunner.ts clean meta build",
"test": "npx ts-node tasks/utilities/TaskRunner.ts test",
"watch": "npx ts-node tasks/utilities/TaskRunner.ts clean meta watch",
"clean": "npx ts-node tasks/utilities/TaskRunner.ts clean"
},
"devDependencies": {
"ts-node": "10.9.2",
"typescript": "5.6.1-rc",
"del": "6.1.1",
"ansicolor": "1.1.100",
"eslint": "9.8.0",
"@types/eslint": "9.6.0",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"eslint-plugin-only-warn": "1.1.0",
"@types/node": "20.1.4",
"mocha": "10.7.0",
"chai": "4.5.0",
"chai-as-promised": "7.1.2",
"@types/chai": "4.3.17",
"@types/mocha": "10.0.7",
"@types/chai-as-promised": "7.1.8",
"even-more-min": "1.0.1"
},
"overrides": {
"ts-node": {
"typescript": "$typescript"
},
"even-more-min": {
"mocha": "$mocha"
}
}
}