-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (41 loc) · 1013 Bytes
/
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
{
"name": "socket-store",
"version": "0.0.2",
"description": "it is a websocket store. it makes it easy to use websocket",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files":[
"dist/*"
],
"directories": {
"example": "example"
},
"scripts": {
"dev": "vite",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/nerdchanii/socket-store.git"
},
"bugs": {
"url": "https://github.com/nerdchanii/socket-store/issues"
},
"homepage": "https://github.com/nerdchanii/socket-store#readme",
"keywords": [
"websocket",
"store",
"websocket-store",
"websocket-store-client",
"websocket-client"
],
"author": "nerdchanii <[email protected]>",
"license": "MIT",
"devDependencies": {
"typescript": "^4.8.2",
"vite": "^3.0.9"
}
}