-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.07 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
76
77
78
79
80
81
82
{
"name": "@lexjs/prompts",
"version": "0.0.0-semantically-released",
"description": "Interactive prompts",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"prepack": "npm run build",
"build": "npm run tsc",
"prebuild": "npm run ci && rimraf ./dist",
"ci": "npm run check-style && npm run check-build",
"check-style": "npm run format:check && npm run lint",
"check-build": "npm run tsc -- --noEmit",
"tsc": "tsc -p ./tsconfig.json",
"format": "prettier --write \"*.{js,cjs,mjs,ts,cts,mts}\" \"{src,lib}/**/*.{ts,js}\"",
"format:check": "prettier --check \"*.{js,cjs,mjs,ts,cts,mts}\" \"{src,lib}/**/*.{ts,js}\"",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "npm run lint -- --fix",
"style": "npm run format && npm run lint:fix",
"prepare": "husky"
},
"author": {
"name": "Lex Borisoff",
"email": "[email protected]",
"url": "https://borisoff.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LexBorisoff/prompts.git"
},
"homepage": "https://github.com/LexBorisoff/prompts",
"bugs": {
"url": "https://github.com/LexBorisoff/prompts/issues"
},
"files": [
"dist",
"lib"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./lib": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"default": "./lib/index.js"
}
},
"license": "ISC",
"keywords": [
"ui",
"prompts",
"cli",
"prompt",
"interface",
"command-line",
"input",
"command",
"stdin",
"menu",
"ask",
"interact"
],
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@lexjs/eslint-plugin": "^1.1.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2"
},
"dependencies": {
"kleur": "^4.1.5",
"sisteransi": "^1.0.5"
}
}