-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.03 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
{
"name": "pkg-name",
"version": "1.0.0",
"description": "pkg-description",
"keywords": [],
"homepage": "https://github.com/tobynguyen27/pkg-name#readme",
"bugs": {
"url": "https://github.com/tobynguyen27/pkg-name/issues"
},
"license": "MIT",
"author": "Toby Nguyen <hi@tobynguyen.net>",
"repository": {
"type": "git",
"url": "git+https://github.com/tobynguyen27/pkg-name.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check": "vp check",
"prepublishOnly": "vp run build",
"prepare": "vp config",
"bump": "bumpp"
},
"devDependencies": {
"@types/node": "catalog:types",
"@typescript/native-preview": "catalog:types",
"bumpp": "catalog:scripts",
"typescript": "catalog:types",
"vite-plus": "catalog:build"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.18.0"
}