-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.22 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
{
"name": "unprompts",
"version": "1.0.11",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub && esno play/index.ts --foo foo --bar bar",
"release": "changeset publish",
"lint": "tsc --noEmit",
"start": "esno play/index.ts",
"test": "vitest"
},
"author": "hunghg255",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.15.13",
"esno": "^0.16.3",
"husky": "^8.0.3",
"terser": "^5.17.1",
"tslib": "^2.5.2",
"typescript": "^5.0.4"
},
"dependencies": {
"is-unicode-supported": "^1.3.0",
"unbuild": "^1.2.1",
"wrap-ansi": "^8.1.0"
},
"keywords": [
"CLI",
"Prompt"
],
"bugs": {
"url": "https://github.com/hunghg255/unprompts/issues"
},
"homepage": "https://github.com/hunghg255/unprompts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hunghg255/unprompts.git"
}
}