-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.5 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.5 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@thaitype/shell",
"version": "3.0.0",
"type": "module",
"description": "",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/dts/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/dts/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"start": "tsx src/main.ts",
"dev": "tsx watch src/main.ts",
"test:coverage": "vitest run --coverage",
"test:coverage:report": "npx uncoverage coverage/coverage-final.json --print",
"test:coverage:feedback": "run-s test:coverage test:coverage:report",
"test": "vitest",
"test:ci": "vitest run",
"check-types": "tsc --noEmit",
"build": "run-s format && run-s build-esm && run-s build-annotate",
"build-esm": "tsc -b tsconfig.build.json",
"build-annotate": "babel dist --plugins annotate-pure-calls --out-dir dist --source-maps",
"format": "prettier -w src",
"lint": "run-s check-types && eslint ./src && prettier -c src",
"lint:fix": "eslint --fix ./src && prettier -w src",
"all": "run-s lint build test:ci",
"release": "run-s all && changeset version && changeset publish",
"changeset": "changeset"
},
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/core": "^7.24.5",
"@babel/plugin-transform-export-namespace-from": "^7.24.1",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@changesets/cli": "^2.29.5",
"@eslint/js": "^9.23.0",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@vitest/coverage-istanbul": "^3.2.4",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-only-warn": "^1.1.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"zod": "^4.1.12"
},
"keywords": [],
"author": "Thada Wangthammang",
"license": "MIT",
"files": [
"dist",
"src",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/thaitype/shell.git"
},
"homepage": "https://github.com/thaitype/shell",
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"deepmerge": "^4.3.1",
"execa": "^9.6.0",
"string-argv": "^0.3.2"
}
}