-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 970 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
{
"name": "@ae-studio/px",
"version": "1.1.0",
"license": "MIT",
"type": "module",
"main": "src/index.js",
"bin": {
"px": "./src/index.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "husky",
"start": "node ./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/agencyenterprise/px-cli"
},
"bugs": {
"url": "https://github.com/agencyenterprise/px-cli/issues"
},
"homepage": "https://pxcli.com/",
"keywords": [
"cli",
"px",
"npm",
"pnpm",
"yarn"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"configstore": "^6.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@rocketseat/eslint-config": "2.2.2",
"eslint": "8",
"eslint-plugin-simple-import-sort": "12.1.0",
"husky": "9.0.11",
"type-fest": "^4.18.0"
}
}