-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "matrix-events-sdk",
"version": "2.0.0",
"description": "JS/TS SDK for interacting with Matrix events",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "git@github.com:matrix-org/matrix-events-sdk.git",
"author": "The Matrix.org Foundation C.I.C.",
"license": "Apache-2.0",
"files": [
"lib",
"README.md",
"package.json",
"yarn.lock",
"LICENSE"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "yarn build",
"clean": "rimraf lib",
"idx": "ctix single -p tsconfig.build.json --startAt src --output src/index.ts --overwrite --noBackup --useComment && yarn format",
"build": "yarn clean && yarn idx && tsc -p tsconfig.build.json",
"start": "tsc -p tsconfig.build.json -w",
"test": "jest",
"format": "prettier --config .prettierrc \"{src,test}/**/*.ts\" --write",
"lint": "tsc -p tsconfig.json --noEmit && prettier --config .prettierrc \"{src,test}/**/*.ts\" --check"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^16",
"ctix": "^1.7.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"dependencies": {
"ajv": "^8.11.2",
"ajv-errors": "^3.0.0"
}
}