-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.45 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@smashchats/library",
"version": "0.0.0-alpha",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**/*"
],
"type": "module",
"scripts": {
"dev": "nodemon",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"tutorial": "vitest run --coverage tutorial",
"build": "rm -rf ./dist/* && tsc -p tsconfig.build.json && tsc-alias",
"prettier": "prettier --config .prettierrc 'src/**/*.ts'",
"prettier:format": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --check",
"eslint:check": "eslint src/**/*.ts",
"eslint-dist:check": "eslint dist/**/*.js",
"typecheck": "tsc --noEmit",
"circular-dependencies:check": "madge --circular dist/",
"lint-staged": "lint-staged",
"code:checks": "npm run eslint:check && npm run typecheck && npm run prettier:check",
"build:checks": "npm run code:checks && npm run build && npm run eslint-dist:check && npm run circular-dependencies:check",
"prepare": "[ -n \"$CI\" ] || npm run prepare:husky",
"prepare:husky": "husky",
"postinstall": "patch-package",
"publish-package": "node ./publish.cjs"
},
"lint-staged": {
"*.ts": "npm run prettier:format"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@peculiar/webcrypto": "^1.4.6",
"2key-ratchet": "^1.0.18",
"async-lock": "^1.4.1",
"buffer": "^6.0.3",
"fast-json-stable-stringify": "^2.1.0",
"simple-peer": "^9.11.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/async-lock": "^1.4.2",
"@types/simple-peer": "^9.11.8",
"@vitest/coverage-v8": "^3.1.3",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"junit": "0.5.1",
"lint-staged": "^15.2.10",
"madge": "^8.0.0",
"nodemon": "^3.1.7",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"socket.io": "^4.8.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.3"
}
}