-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "nuxt-content-snippet",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@9.5.0",
"description": "Easily import code snippets to your Nuxt Content documents",
"author": "Phojie Rengel <phojrengel@gmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/phojie",
"homepage": "https://github.com/phojie/nuxt-content-snippet#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/phojie/nuxt-content-snippet.git"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"require": "./dist/module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"build:dev": "nuxi generate playground",
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"stub": "nuxt-module-build --stub",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "bumpp package.json playground/package.json && pnpm -r publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "nuxi typecheck",
"prepare": "nuxi prepare playground"
},
"dependencies": {
"@nuxt/kit": "^3.12.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@nuxt/devtools": "latest",
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "^3.12.4",
"@nuxt/test-utils": "^3.14.0",
"@types/node": "^18.19.42",
"bumpp": "^9.4.1",
"eslint": "^8.57.0",
"lint-staged": "^13.3.0",
"nuxt": "^3.12.4",
"simple-git-hooks": "^2.11.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"publishConfig": {
"access": "public"
}
}