This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "vitesh",
"version": "1.1.2",
"description": "A minimal shell implementation for xterminal",
"main": "./dist/vitesh.js",
"module": "./dist/vitesh.js",
"browser": "./dist/vitesh.js",
"types": "./dist/vitesh.d.ts",
"files": [
"dist",
"./LICENSE.txt",
"./README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/henryhale/vitesh.git"
},
"keywords": [
"bash",
"sh",
"shell",
"cli",
"terminal",
"xterminal",
"web"
],
"author": {
"name": "Henry Hale",
"url": "https://github.com/henryhale"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/henryhale/vitesh/issues"
},
"homepage": "https://github.com/henryhale/vitesh#readme",
"scripts": {
"clean": "del-cli out dist",
"build:ts": "tsc -b",
"build:js": "rollup -c",
"build": "pnpm clean && pnpm build:ts && pnpm build:js",
"lint": "eslint -c .eslintrc.json --max-warnings 0 --ext .ts source/ types/",
"lint:fix": "eslint \"source/**/*.ts\" \"types/*.ts\" --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"prepack": "pnpm build"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"del-cli": "^5.0.0",
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.7",
"rollup": "^3.20.7",
"typescript": "^5.0.4"
},
"dependencies": {
"arrgv": "^1.0.2"
},
"engines": {
"node": ">14",
"pnpm": ">=7"
}
}