-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "napy",
"description": "Cli to handle yarn and npm easily",
"version": "0.0.6",
"license": "MIT",
"files": [
"dist"
],
"bin": {
"napy": "dist/bin/napy.js"
},
"keywords": [
"npm",
"yarn",
"compat",
"package manager"
],
"author": {
"name": "Victor Bury",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/anymaniax/napy"
},
"scripts": {
"build": "tsup ./src/bin/napy.ts --minify --clean --out-dir dist/bin",
"dev": "tsup-node ./src/bin/napy.ts --clean --watch src --out-dir dist/bin",
"lint": "eslint src/**/*.ts",
"format": "prettier --write 'src/**/*.{js,ts}'",
"release": "dotenv release-it",
"prepare": "husky install",
"commitlint": "commitlint",
"napy": "node ./dist/bin/napy.js"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@release-it/conventional-changelog": "^2.0.1",
"@types/fs-extra": "^9.0.10",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"release-it": "^14.6.0",
"rimraf": "^3.0.2",
"tsup": "^4.8.21",
"typescript": "^4.2.4"
},
"dependencies": {
"chalk": "^4.1.1",
"cuid": "^2.1.8",
"execa": "^5.0.0",
"inquirer": "^8.0.0",
"upath": "^2.0.1"
}
}