-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 KB
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
{
"name": "@flagsync/cli",
"version": "0.4.0",
"description": "FlagSync CLI",
"author": "Mike Chabot",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/flagsync/cli"
},
"homepage": "https://www.flagsync.com",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"flagsync": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"flagsync": "pnpm build && node ./dist/index.js"
},
"files": [
"dist",
"README.md",
"package.json"
],
"engines": {
"node": ">=16",
"npm": ">=6"
},
"dependencies": {
"@inquirer/prompts": "^7.5.3",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"find-up": "^7.0.0",
"open": "^10.1.2",
"ora": "^8.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.30",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"replace-in-file": "^7.2.0",
"semver": "^7.7.1",
"shx": "^0.4.0",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
}
}