-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1017 Bytes
/
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
{
"name": "rem-this",
"version": "1.1.0",
"description": "CLI to convert px to rem",
"main": "dist/index.js",
"repository": "https://github.com/Zidious/rem-this",
"author": "Gabe Olesen",
"license": "MIT",
"type": "module",
"bin": {
"rem-this": "./dist/index.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepare": "husky install",
"precommit": "lint-staged"
},
"dependencies": {
"chalk": "^5.3.0",
"clipboardy": "^3.0.0",
"meow": "^12.1.1"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.*.ts": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"rem",
"px",
"convert",
"cli"
]
}