-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.59 KB
/
package.json
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
{
"name": "cable-shared-worker",
"private": true,
"version": "0.0.0",
"description": "ActionCable and AnyCable Shared Worker support",
"keywords": [
"anycable",
"actioncable",
"shared worker",
"visibility api"
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "rollup --bundleConfigAsCjs -c && tsc",
"dev": "rollup --bundleConfigAsCjs -c -w",
"lint": "pnpify run prettier --check packages/**/src/*.js && eslint packages/**/src/*.js shared/**/*.js *.config.js",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watch",
"format": "pnpify run prettier --write packages/**/src/*.js"
},
"author": "Alexey Vasiliev",
"license": "MIT",
"repository": "github:le0pard/cable-shared-worker",
"bugs": {
"url": "https://github.com/le0pard/cable-shared-worker/issues"
},
"homepage": "https://github.com/le0pard/cable-shared-worker#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@yarnpkg/pnpify": "^4.1.3",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"rollup": "^4.24.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}