-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.83 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
{
"name": "create-un",
"version": "2.0.37",
"packageManager": "[email protected]",
"description": "Create Universal template",
"author": "peterroe",
"license": "MIT",
"homepage": "https://github.com/peterroe/un#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/peterroe/un.git"
},
"bugs": "https://github.com/peterroe/un/issues",
"keywords": [
"cli",
"typescript",
"template"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"create-un": "bin/index.mjs"
},
"files": [
"package.json",
"bin",
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"start": "esno src/index.ts",
"docs:dev": "pnpm --filter docs dev",
"docs:build": "pnpm --filter docs build",
"test": "vitest",
"coverage": "vitest run --coverage",
"release": "pnpm build && bumpp && npm publish",
"typecheck": "tsc --noEmit",
"minor": "taze minor -r",
"up:minor": "taze minor -r -w"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"provenance": true
},
"dependencies": {
"giget": "^1.2.1",
"ora": "^8.0.1",
"taze": "^0.9.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.5",
"@types/node": "18.18.9",
"@types/prompts": "^2.4.8",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"bumpp": "8.2.1",
"esno": "0.16.3",
"fs-extra": "^11.1.1",
"husky": "8.0.3",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"typescript": "5.2.2",
"unbuild": "0.8.11",
"vite": "4.5.2",
"vitest": "1.6.0"
}
}