-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 1.98 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
{
"name": "qiscus-sdk-javascript",
"version": "3.4.2",
"description": "Qiscus Web SDK Core",
"license": "MIT",
"main": "dist/qiscus-sdk-javascript.umd.js",
"module": "dist/qiscus-sdk-javascript.mjs",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./dist/qiscus-sdk-javascript.mjs",
"require": "./dist/qiscus-sdk-javascript.umd.js",
"types": "./types/index.d.ts"
}
},
"files": [
"dist",
"types"
],
"scripts": {
"serve": "serve dist -l 1235",
"clean": "rimraf dist lib lib-esm types typings",
"dev": "vite",
"build": "run-s clean build:*",
"build:bundle": "vite build",
"build:type": "tsc --build tsconfig.json",
"test": "vitest --run",
"test:w:coverage": "vitest --coverage",
"prepublish": "run-s clean build:*",
"release:minor": "np --any-branch --yolo minor",
"release:patch": "np --any-branch --yolo patch",
"release:pre-alpha": "np --any-branch --yolo --tag=alpha prerelease"
},
"prettier": {
"semi": false,
"useTabs": false,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 120
},
"dependencies": {
"axios": "^0.27.2",
"is_js": "^0.9.0",
"lodash.debounce": "^4.0.8",
"lodash.flatten": "^4.4.0",
"mqtt": "^4.2.8",
"nanoid": "^4.0.0",
"pietile-eventemitter": "^1.0.0",
"xstream": "^11.11.0"
},
"devDependencies": {
"@types/is": "0.0.21",
"@types/jest": "^25.1.2",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.flatten": "^4.4.6",
"@types/node": "^18.11.14",
"@types/ws": "^7.4.7",
"@vitest/coverage-c8": "^0.25.8",
"msw": "^0.49.2",
"np": "^10.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^2.7.1",
"serve": "14.1.2",
"typescript": "^4.9.5",
"vite": "^4.0.1",
"vitest": "^0.25.7"
},
"packageManager": "[email protected]+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}