-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.47 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
{
"name": "@rajnandan1/termo",
"version": "0.0.1",
"description": "A terminal emulator for the web",
"type": "module",
"main": "dist/termo.min.js",
"module": "dist/termo.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/termo.esm.js",
"require": "./dist/termo.min.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run clean && npm run build:types && rollup --bundleConfigAsCjs -c rollup.config.js",
"watch": "rollup --bundleConfigAsCjs -c rollup.config.js --watch",
"prettify": "prettier --write ."
},
"keywords": [
"termo"
],
"author": "Raj Nandan Sharma <rajnandan1@gmail.com> (https://www.rajnandan.com)",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/xterm": "^2.0.3",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"prettier": "^3.2.5",
"rollup": "^4.18.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}