-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.59 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
{
"type": "module",
"name": "xconn",
"version": "0.1.1",
"description": "XConn",
"main": "ts-built/index.js",
"exports": {
"import": "./ts-built/index.js",
"require": "./ts-built/index.cjs",
"types": "./ts-built/index.d.ts"
},
"types": "ts-built/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "npm run build",
"postinstall": "npm run postinstall:build",
"postinstall:build": "if [ ! -f ts-built/index.js ]; then npm run build; fi",
"build": "rollup -c",
"test": "NODE_OPTIONS=--experimental-vm-modules jest ./lib/* ./tests/*",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"author": "Mahad Munir <mahad@xconn.io>",
"license": "MIT",
"dependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.4",
"rollup": "^4.52.4",
"rollup-plugin-dts": "^6.2.3",
"tsdown": "^0.15.6",
"tslib": "^2.8.1",
"typescript": "^5.5.3",
"wampproto": "https://github.com/xconnio/wampproto-js.git#860822112340630509a663911ff6fe11819e36a6",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@swc/jest": "^0.2.39",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.4"
}
}