-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.13 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.13 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "nuxt-safe-runtime-config",
"type": "module",
"version": "0.1.2",
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"description": "Validate Nuxt runtime config with Standard Schema at build time",
"author": {
"name": "onmax"
},
"license": "MIT",
"repository": "onmax/nuxt-safe-runtime-config",
"keywords": [
"nuxt",
"nuxt-module",
"runtime-config",
"validation",
"standard-schema",
"valibot",
"zod",
"arktype",
"build-time",
"shelve",
"secrets"
],
"sideEffects": false,
"exports": {
".": { "types": "./dist/types.d.mts", "import": "./dist/module.mjs" },
"./eslint": { "types": "./dist/eslint.d.mts", "import": "./dist/eslint.mjs" }
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": ["./dist/types.d.mts"],
"eslint": ["./dist/eslint.d.mts"]
}
},
"files": [
"dist"
],
"scripts": {
"clean:dist": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"prepack": "pnpm clean:dist && nuxt-module-build build && unbuild",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"clean:runtime-stubs": "find src/runtime -type f \\( -name '*.js' -o -name '*.d.ts' \\) -delete",
"release": "bumpp && git push --follow-tags",
"typecheck": "pnpm clean:runtime-stubs && nuxt typecheck && pnpm -C playground typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"peerDependencies": {
"@nuxt/kit": "^3.0.0 || ^4.0.0",
"eslint": ">=9.0.0"
},
"peerDependenciesMeta": {
"eslint": { "optional": true }
},
"dependencies": {
"@cfworker/json-schema": "catalog:",
"@standard-community/standard-json": "catalog:",
"@standard-schema/spec": "catalog:",
"consola": "catalog:",
"defu": "catalog:",
"magicast": "catalog:",
"ofetch": "catalog:",
"std-env": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@nuxt/devtools": "catalog:",
"@nuxt/eslint": "catalog:",
"@nuxt/eslint-config": "catalog:",
"@nuxt/module-builder": "catalog:",
"@nuxt/schema": "catalog:",
"@nuxt/test-utils": "catalog:",
"@types/node": "catalog:",
"@typescript-eslint/parser": "catalog:",
"@typescript-eslint/rule-tester": "catalog:",
"@typescript-eslint/utils": "catalog:",
"bumpp": "catalog:",
"changelogen": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"lint-staged": "catalog:",
"nuxt": "catalog:",
"simple-git-hooks": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"valibot": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}