forked from guyutongxue/local-echo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@parsempo/local-echo",
"version": "0.1.7",
"description": "A local echo controller for xterm.js",
"type": "module",
"source": "./src/index.ts",
"exports": "./dist/index.modern.js",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "npm run lint:eslint && npm run lint:prettier",
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest --silent=false --verbose false",
"lint:eslint": "eslint \"./{src,test}/**/*.ts\" --fix",
"lint:prettier": "prettier \"./{src,test}/**/*.ts\" --write",
"prepublishOnly": "yarn build"
},
"repository": "git+https://github.com/parsempo/local-echo.git",
"keywords": [
"xterm",
"echo",
"terminal",
"local",
"echo"
],
"contributors": [
{
"name": "Ioannis Charalampidis"
},
{
"name": "kobakazu0429",
"email": "kobakazu10@gmail.com"
},
{
"name": "Guyutongxue",
"email": "guyutongxue@163.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kobakazu0429/local-echo/issues"
},
"homepage": "https://github.com/kobakazu0429/local-echo#readme",
"devDependencies": {
"@kobakazu0429/eslint-config-typescript": "^2.1.3",
"@types/estree": "^0.0.50",
"@types/jest": "^27.0.1",
"@types/shell-quote": "^1.7.1",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"microbundle": "^0.13.3",
"shell-quote": "^1.7.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2",
"xterm": "^4.13.0"
}
}