-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.82 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
73
{
"name": "viteshell",
"version": "0.8.0",
"description": "A minimalistic shell implementation written in TypeScript.",
"main": "./dist/viteshell.umd.js",
"module": "./dist/viteshell.esm.js",
"browser": "./dist/viteshell.umd.js",
"types": "./dist/viteshell.d.ts",
"type": "module",
"files": [
"dist",
"./LICENSE.txt",
"./README.md"
],
"scripts": {
"dev": "tsc -w",
"build:ts": "tsc -b",
"build:js": "rollup -c",
"build": "pnpm build:ts && pnpm build:js",
"lint": "biome lint ./source ./tests",
"format": "biome check --write ./source ./tests",
"prepack": "pnpm build",
"prepare": "husky install",
"release": "release-it",
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/henryhale/viteshell.git"
},
"keywords": [
"bash",
"cli",
"command",
"console",
"executor",
"sh",
"shell",
"terminal"
],
"author": {
"name": "Henry Hale",
"url": "https://github.com/henryhale"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/henryhale/viteshell/issues"
},
"homepage": "https://github.com/henryhale/viteshell#readme",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@biomejs/biome": "^1.8.3",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"release-it": "^17.1.1",
"rollup": "^4.14.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=14",
"pnpm": ">=7"
}
}