-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1002 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1002 Bytes
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
{
"name": "nuxt-define",
"version": "1.0.0",
"description": "One utility function for module authors to define compiler constants for all builders supported by Nuxt.",
"type": "module",
"license": "MIT",
"funding": "https://github.com/sponsors/bobbiegoede",
"keywords": [
"nuxt",
"module"
],
"author": {
"name": "Bobbie Goede",
"email": "bobbiegoede@gmail.com"
},
"contributors": [
{
"name": "Bobbie Goede (@BobbieGoede)"
}
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"release": "pnpm bumpp && pnpm publish"
},
"packageManager": "pnpm@10.11.1",
"devDependencies": {
"@nuxt/kit": "^3.17.5",
"@rspack/core": "^1.3.15",
"bumpp": "^10.1.1",
"tsdown": "^0.12.7",
"typescript": "^5.8.3",
"webpack": "^5.99.9"
}
}