-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "@xandrrrr/prompt-kit",
"version": "2.0.4",
"description": "Build complex terminal interfaces and menues",
"files": [
"lib/**/*"
],
"main": "lib/cjs/index.js",
"types": "lib/cjs/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./config/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./config/tsconfig.cjs.json",
"typedoc:build": "npx typedoc",
"tests:all": "jest --roots tests/unit",
"lint": "eslint --ext \".ts\" ./src"
},
"keywords": [
"prompt",
"promptkit",
"interface",
"console",
"menu"
],
"author": "David Neidhart <[email protected]> (https://xndr.tech/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Xander1233/prompt-kit.git"
},
"homepage": "https://github.com/Xander1233/prompt-kit",
"bugs": {
"url": "https://github.com/Xander1233/prompt-kit/issues"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.2",
"typescript": "^5.0.4"
}
}