-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "@the-draupnir-project/interface-manager",
"version": "3.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": {
"name": "Gnuxie",
"email": "Gnuxie@protonmail.com"
},
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/the-draupnir-project/interface-manager.git",
"type": "git"
},
"private": false,
"scripts": {
"build": "rm -rf dist && yarn tsc --project tsconfig.json",
"lint": "yarn eslint src && yarn prettier --check src",
"prepare": "yarn build",
"test": "yarn jest"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@gnuxie/tsconfig": "^0.5.5",
"@the-draupnir-project/matrix-basic-types": "^0.2.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"eslint": "^9.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
},
"dependencies": {
"@gnuxie/super-cool-stream": "^0.2.1",
"@gnuxie/typescript-result": "^1.0.0"
},
"peerDependencies": {
"@the-draupnir-project/matrix-basic-types": "^0.2.0"
}
}