-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.02 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.02 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
{
"name": "promise-worker-bi",
"version": "5.0.2",
"description": "Promise-based messaging for Web Workers and Shared Workers",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"type": "module",
"scripts": {
"prepack": "node --run build",
"build": "rm -rf dist && rollup -c && tsc --emitDeclarationOnly",
"build-test": "node --run build && node scripts/build-test.js",
"lint": "eslint .",
"prettier": "prettier --write 'src/*.ts' && prettier --write 'test/*.js' && prettier --write 'scripts/*.js'",
"karma": "node --run build-test && karma start",
"test": "tsc --noEmit && node --run lint && node --run karma",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dumbmatter/promise-worker-bi.git"
},
"keywords": [
"promise",
"shared worker",
"sharedworker",
"web worker",
"webworker",
"worker"
],
"author": "Jeremy Scheff <jdscheff@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dumbmatter/promise-worker-bi/issues"
},
"homepage": "https://github.com/dumbmatter/promise-worker-bi",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^10.0.1",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.3",
"eslint-plugin-import-x": "^4.16.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"lint-staged": "^16.3.2",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"rollup-plugin-node-builtins": "^2.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"files": [
"dist"
],
"lint-staged": {
"*.{js,cjs,mjs,jsx,json,scss,ts,cts,mts,tsx}": "prettier --write"
}
}