-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "arclix",
"repository": {
"type": "git",
"url": "https://github.com/arclix/core.git"
},
"version": "0.1.5",
"description": "An Open Source CLI with Creation and Component Generation for React.",
"homepage": "https://arclix.github.io/arclix-docs",
"main": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch --project ./tsconfig.json",
"build": "tsc --project ./tsconfig.json",
"prettier": "prettier --write --cache .",
"prettier:check": "prettier --check .",
"lint": "eslint --fix --ext .ts --cache .",
"format": "npm run prettier && npm run lint",
"format:check": "npm run prettier:check && npm run lint",
"verify": "npm run format:check && npm run build",
"verify:pr": "npm run verify && npm run test:coverage",
"pre-commit": "npm run verify",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepare": "husky install"
},
"keywords": [
"TypeScript",
"React",
"React CLI",
"cli",
"react",
"react-cli"
],
"author": "Jitiendran",
"license": "MIT",
"bin": "/dist/index.js",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.11.18",
"@types/pacote": "^11.1.5",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitest/coverage-c8": "^0.29.2",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"prettier": "2.8.4",
"typescript": "^5.0.4",
"vitest": "^0.29.2"
},
"dependencies": {
"boxen": "^7.1.0",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"nanospinner": "^1.1.0",
"pacote": "^15.2.0"
}
}