-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.21 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
{
"name": "simple-donation",
"version": "1.2.2",
"description": "A customizable donation module for Nuxt 3 projects",
"main": "module.ts",
"types": "module.ts",
"files": [
"module.ts",
"runtime"
],
"scripts": {
"dev": "nuxt dev playground",
"build": "nuxt build playground",
"generate": "nuxt generate playground",
"lint": "eslint --ext .js,.ts,.vue runtime/**/*.ts runtime/**/*.vue module.ts"
},
"keywords": [
"nuxt",
"donation",
"paypal",
"module",
"customizable"
],
"author": "Giovanni Manetti",
"license": "MIT",
"homepage": "https://github.com/giovannimanetti11/Simple-donation",
"repository": {
"type": "git",
"url": "git+https://github.com/giovannimanetti11/Simple-donation.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/giovannimanetti11"
},
"dependencies": {
"defu": "^6.0.0",
"dompurify": "^2.4.0"
},
"devDependencies": {
"@nuxt/kit": "^3.0.0",
"nuxt": "^3.0.0",
"typescript": "^4.5.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.20.0",
"tailwindcss": "^3.3.0"
},
"peerDependencies": {
"nuxt": "^3.0.0"
}
}