-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.75 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
74
75
76
77
78
79
80
81
82
{
"name": "rosetta-cli",
"version": "0.3.1",
"author": "Rodrigo Fernández (@FdezRomero)",
"license": "MIT",
"description": "Easily switch & run commands on Intel/ARM modes in M1-powered Macs with Rosetta 2.",
"keywords": [
"rosetta",
"apple",
"mac",
"m1",
"arm",
"arch",
"cli"
],
"homepage": "https://github.com/FdezRomero/rosetta-cli",
"repository": {
"type": "git",
"url": "https://github.com/FdezRomero/rosetta-cli.git"
},
"bugs": {
"url": "https://github.com/FdezRomero/rosetta-cli/issues"
},
"type": "module",
"main": "dist/rosetta-cli.esm.production.min.js",
"module": "dist/rosetta-cli.esm.production.min.js",
"files": [
"dist",
"cli.js"
],
"bin": {
"rosetta": "cli.js",
"rosetta-cli": "cli.js"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --target node --format esm --env production",
"test": "tsdx test",
"lint": "tsdx lint src",
"prepare": "npm run build",
"size": "size-limit",
"analyze": "size-limit --why",
"release": "standard-version"
},
"engines": {
"node": ">=14"
},
"os": [
"darwin"
],
"dependencies": {
"commander": "^9.4.1",
"inquirer": "^9.1.4"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.1.0",
"@types/inquirer": "^9.0.3",
"husky": "^8.0.2",
"prettier": "^2.7.1",
"size-limit": "^8.1.0",
"standard-version": "^9.5.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"size-limit": [
{
"path": "dist/*.js",
"limit": "10 KB"
}
]
}