-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "vercel-toast",
"version": "0.0.0",
"description": "Framework-agnostic vercel design's toast component",
"author": "2nthony <[email protected]> (https://github.com/2nthony)",
"license": "MIT",
"funding": "https://github.com/sponsors/2nthony",
"repository": {
"type": "git",
"url": "2nthony/vercel-toast"
},
"exports": {
".": {
"types": "./dist/vercel-toast.d.ts",
"require": "./dist/vercel-toast.js",
"import": "./dist/vercel-toast.mjs"
},
"./css": "./dist/vercel-toast.css",
"./*": "./*"
},
"main": "dist/vercel-toast.js",
"module": "dist/vercel-toast.mjs",
"browser": "dist/vercel-toast.global.js",
"types": "dist/vercel-toast.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo lol",
"example": "vite",
"example:build": "vite build",
"build": "tsup --entry.vercel-toast src/index.ts --dts --format esm,cjs,iife --minify --global-name=vercelToast",
"docs": "typedoc src/index.ts --out example/public/docs --readme none",
"build:docs": "npm run docs && npm run example:build",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@2nthony/eslint-config": "^1.0.1",
"@saika/github-corner": "0.1.3",
"@vitejs/plugin-vue2": "^2.2.0",
"eslint": "^8.36.0",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"postcss": "8.4.49",
"postcss-preset-env": "8.5.1",
"saika": "2.13.10",
"saika-code-block-buttons": "1.0.1",
"tsup": "6.7.0",
"typedoc": "0.23.27",
"typescript": "5.0.4",
"vite": "4.5.5",
"vue": "2.7.16",
"vue-template-compiler": "2.7.16",
"vuedown": "3.2.0"
},
"lint-staged": {
"*.{ts,js,json,md}": [
"eslint --fix",
"git add"
]
}
}