-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "create-un",
"version": "2.0.47",
"packageManager": "pnpm@9.5.0",
"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",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"create-un": "bin/index.mjs"
},
"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",
"prerelease": "node scripts/pre-release.mjs",
"release": "pnpm build && bumpp && pnpm publish --no-git-checks",
"typecheck": "tsc --noEmit",
"minor": "taze minor -r",
"up:minor": "taze minor -r -w"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"provenance": false
},
"dependencies": {
"@types/node": "catalog:",
"ora": "catalog:",
"taze": "catalog:",
"unocss": "catalog:",
"execa": "catalog:default",
"tar": "catalog:"
},
"devDependencies": {
"@types/fs-extra": "catalog:",
"@types/minimist": "catalog:",
"@types/prompts": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"bumpp": "catalog:",
"esno": "catalog:",
"fs-extra": "catalog:",
"husky": "catalog:",
"kolorist": "catalog:",
"minimist": "catalog:",
"prompts": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
}
}