This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 3.16 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@superviz/sdk",
"version": "0.0.0-development",
"description": "SuperViz SDK",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs.js"
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"build": "node ./.esbuild/build.js",
"postbuild": "./node_modules/typescript/bin/tsc",
"watch": "concurrently -n code,types \"yarn watch:code\" \"yarn watch:types\"",
"watch:code": "node ./.esbuild/watch.js",
"watch:types": "./node_modules/typescript/bin/tsc --watch --outDir ./dist",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --coverage",
"test:unit:ci": "jest --ci",
"test:unit:web-components": "wtr",
"test:unit:web-components:watch": "wtr --watch",
"test:unit:web-components:coverage": "wtr --coverage",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"publishConfig": {
"access": "public",
"scope": "@superviz"
},
"repository": {
"type": "git",
"url": "https://github.com/SuperViz/sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SuperViz/sdk/issues"
},
"homepage": "https://github.com/SuperViz/sdk#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@jest/globals": "^29.7.0",
"@open-wc/testing-helpers": "^3.0.1",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/lodash.isequal": "^4.5.8",
"@types/luxon": "^3.4.2",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@web/dev-server-esbuild": "^0.4.3",
"@web/dev-server-import-maps": "^0.2.0",
"@web/dev-server-legacy": "^2.0.3",
"@web/test-runner": "^0.17.2",
"@web/test-runner-playwright": "^0.10.2",
"concurrently": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"esbuild": "^0.21.5",
"eslint": "^9.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-browser-globals": "^25.1.0-beta",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"rimraf": "^5.0.7",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.5",
"tsc": "^2.0.4",
"typescript": "^5.5.2",
"yargs": "^17.7.2"
},
"dependencies": {
"bowser": "^2.11.0",
"bowser-jr": "^1.0.6",
"debug": "^4.3.4",
"lit": "^3.1.4",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"luxon": "^3.4.4",
"rxjs": "^7.8.1",
"semantic-release-version-file": "^1.0.2",
"@superviz/socket-client": "^1.10.0",
"zod": "^3.23.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}