-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "xxii",
"version": "0.0.0",
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"description": "XXII Chat Application",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/metatech-university/xxii.chat"
},
"bugs": {
"url": "https://github.com/metatech-university/xxii.chat/issues"
},
"homepage": "https://github.com/metatech-university/xxii.chat",
"main": "server.js",
"types": "types/global.d.ts",
"scripts": {
"test": "npm run lint && npm run types",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@types/node": "^25.0.10",
"@types/ws": "^8.18.1",
"eslint": "^9.39.1",
"eslint-config-metarhia": "^9.1.5",
"metarhia-build": "^0.0.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"globalstorage": "github:metarhia/globalstorage",
"impress": "^3.1.2",
"metacom": "^3.2.6"
}
}