-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@poool/buddy",
"version": "3.0.1",
"description": "🐕 Dead simple cross-domain iframe messaging",
"main": "dist/buddy.cjs.js",
"repository": "https://github.com/p3ol/buddy.git",
"author": "Ugo Stephant <[email protected]>",
"contributors": [
"Nicolas Auger <[email protected]>"
],
"license": "MIT",
"sideEffects": false,
"unpkg": "dist/buddy.min.js",
"cdn": "dist/buddy.min.js",
"jsnext:main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"esnext": "src",
"types": "dist/types/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "rm -rf ./dist || true",
"build": "yarn clean && yarn build:code && yarn build:dts",
"build:code": "rollup --configPlugin @rollup/plugin-swc -c",
"build:dts": "tsc --project ./tsconfig.build.json",
"test": "jest",
"prepack": "yarn lint && yarn build && yarn test",
"serve": "webpack serve --config ./webpack.config.js",
"lint": "eslint --max-warnings=0 .",
"release": "standard-version && git push --follow-tags",
"release:beta": "standard-version --prerelease beta && git push --follow-tags",
"release:rc": "standard-version --prerelease rc && git push --follow-tags"
},
"devDependencies": {
"@poool/eslint-config": "4.0.4",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-swc": "0.4.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@swc/core": "1.10.15",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/sinon": "17.0.3",
"@types/ws": "8.5.14",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"jest-dev-server": "11.0.0",
"nyc": "17.1.0",
"puppeteer": "24.2.0",
"puppeteer-to-istanbul": "1.4.0",
"rollup": "4.34.6",
"rollup-plugin-dts": "6.1.1",
"sinon": "19.0.2",
"standard-version": "9.5.0",
"swc-loader": "0.2.6",
"tslib": "2.8.1",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"webpack": "5.97.1",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0",
"ws": "8.18.0"
},
"packageManager": "[email protected]"
}