-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.35 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
{
"name": "@gnuxie/matrix-protection-suite",
"version": "2.10.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": {
"name": "Gnuxie",
"email": "[email protected]"
},
"license": "AFL-3.0",
"repository": {
"url": "https://github.com/Gnuxie/matrix-protection-suite.git",
"type": "git"
},
"scripts": {
"start": "yarn tsc --project tsconfig.json --watch",
"build": "rm -rf dist && yarn tsc --project tsconfig.json && yarn lint && yarn make:docs",
"lint": "yarn eslint src && yarn prettier src --check",
"make:docs": "typedoc",
"test": "jest --coverage",
"test:ci": "cross-env CI=1 jest",
"ts-patch-for-ts-auto-mock": "ts-patch install -s",
"prepare": "husky install && yarn build && yarn ts-patch-for-ts-auto-mock"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.6.0",
"@sinclair/typebox": "0.34.13",
"@the-draupnir-project/matrix-basic-types": "^0.2.0",
"@types/crypto-js": "^4.2.2",
"@types/eslint__js": "^8.42.3",
"@types/glob-to-regexp": "^0.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"cross-env": "^7.0.3",
"eslint": "^9.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-ts-auto-mock": "^2.1.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.39",
"prettier": "^3.3.2",
"ts-auto-mock": "3.7.3",
"ts-jest": "^29.1.5",
"ts-patch": "^3.2.1",
"tslib": "^2.6.3",
"typedoc": "^0.26.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"wait-for-expect": "^3.0.2"
},
"lint-staged": {
"src/**/*.ts": [
"./node_modules/.bin/prettier --write",
"./node_modules/.bin/eslint"
]
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@gnuxie/typescript-result": "^1.0.0",
"await-lock": "^2.2.2",
"crypto-js": "^4.2.0",
"glob-to-regexp": "^0.4.1",
"immutable": "^5.0.0-beta.5",
"ulidx": "^2.3.0"
},
"peerDependencies": {
"@sinclair/typebox": "0.34.13",
"@the-draupnir-project/matrix-basic-types": "^0.2.0"
},
"publishConfig": {
"@gnuxie:registry": "https://registry.npmjs.org"
}
}