-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.71 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
{
"name": "soketto-client",
"version": "1.0.4-release",
"author": "Tufan Meriç Uyguner",
"license": "MIT",
"keywords": [],
"description": "",
"browser": "dist/soketto-client.js",
"main": "build/cjs/index.js",
"module": "build/esm/index.mjs",
"typings": "lib/index.d.ts",
"exports": {
".": {
"browser": {
"default": "./dist/soketto-client.js",
"types": "./dist/soketto-client.d.ts"
},
"import": {
"default": "./build/esm/index.mjs",
"types": "./lib/index.d.ts"
},
"require": {
"default": "./build/cjs/index.js",
"types": "./lib/index.d.ts"
}
},
"./package.json": "./package.json"
},
"files": [
"dist",
"build",
"lib",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build:rollup": "rollup -c rollup.config.js --bundleConfigAsCjs",
"build:types": "dts-bundle-generator -o dist/soketto-client.d.ts src/index.ts",
"build": "tsc && yarn build:rollup && yarn build:types && yarn typedoc"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^16.4.6",
"dts-bundle-generator": "^8.0.1",
"rollup": "^3.20.3",
"ts-node": "^10.9.1",
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.1",
"typescript": "^5.0.3"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/tufcode/soketto-client.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"paketto": "^1.0.1-release",
"tslib": "^2.5.0",
"ws": "^8.13.0"
}
}