-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
75 lines (75 loc) · 1.59 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
{
"name": "adastra-cli",
"version": "0.4.0",
"author": "Odestry",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"adastra": "./bin/run.js"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"scripts": {
"start": "./bin/run.js",
"dev": "npm run build -- --watch",
"build": "tsup src/**/**/**/*.ts --dts --format esm",
"prepack": "oclif manifest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
"@shopify/cli-kit": "^3.43.0",
"adastra-cli-kit": "workspace:*",
"adastra-branding": "workspace:*",
"chalk": "^5.0.1",
"execa": "^6.1.0",
"open": "^8.4.0",
"ora": "^6.1.0",
"vite": "^4.0.4"
},
"devDependencies": {
"adastra-tsconfig": "workspace:*",
"eslint": "^7.32.0",
"eslint-config-adastra": "workspace:*",
"oclif": "^3"
},
"os": [
"darwin",
"linux",
"win32"
],
"engine-strict": true,
"engines": {
"node": ">=14.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odestry/adastra.git",
"directory": "packages/adastra-cli"
},
"keywords": [
"adastra",
"cli"
],
"oclif": {
"bin": "adastra",
"dirname": "adastra",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
]
}
}