-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"name": "isomorphic-worker",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"description": "simplified cross worker API for web workers and worker threads",
"scripts": {
"build": "tsc --build",
"watch": "tsc --build -w",
"pretest": "npm run clean && npm run lint && npm run build",
"test:browser": "npm run test:browser --workspaces --if-present",
"test:node": "npm run test:node --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "eslint",
"clean": "rimraf -g \"packages/*/dist\""
},
"author": "Dazl",
"license": "MIT",
"devDependencies": {
"@dazl/create-disposables": "^18.10.0",
"@eslint/js": "^10.0.1",
"@file-services/path": "^11.0.1",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "24",
"chai": "^6.2.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "12.0.0-beta-9.2",
"mocha-play": "^8.4.2",
"playwright-chromium": "^1.59.1",
"prettier": "^3.8.2",
"rimraf": "^6.1.3",
"source-map-loader": "^5.0.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.1",
"webpack": "^5.106.1"
}
}