-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
{
"name": "@tamtam-chat/message-editor",
"description": "Компонент поля ввода сообщения для веб-версии TamTam",
"version": "0.11.3",
"type": "module",
"main": "./dist/editor.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/editor.js",
"require": "./dist/editor.cjs"
},
"scripts": {
"test": "node --import tsx --test ./test/*.ts",
"dev": "vite --port=3100 --host",
"build": "tsc --emitDeclarationOnly && npm run build-lib",
"build-parser": "BUILD=parser vite build",
"build-lib": "BUILD=lib vite build",
"build-demo": "BUILD=demo vite build",
"clean": "rm -rf ./dist",
"prepare": "npm test && npm run clean && npm run build && npm run build-parser"
},
"keywords": [],
"author": "Sergey Chikuyonok <serge.che@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/tamtam-chat/message-editor.git"
},
"bugs": {
"url": "https://github.com/tamtam-chat/message-editor/issues"
},
"homepage": "https://github.com/tamtam-chat/message-editor#readme"
}