forked from 2nthony/vercel-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "vercel-toast",
"description": "Framework-agnostic vercel design's toast component",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "2nthony/vercel-toast"
},
"author": "2nthony <[email protected]> (https://github.com/2nthony)",
"main": "dist/vercel-toast.min.js",
"module": "dist/vercel-toast.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/*.ts",
"dist/*.js",
"dist/*.css"
],
"scripts": {
"test": "echo lol",
"example": "poi --serve --config example/poi.config.js",
"example:build": "poi --prod --config example/poi.config.js",
"build": "node scripts/build.js && npm run gen-dts --scripts-prepend-node-path",
"gen-dts": "dts-bundle-generator src/index.ts -o dist/index.d.ts",
"docs": "typedoc src/index.ts --out example/public/docs --mode file --readme none --theme minimal --excludeNotExported",
"build:docs": "npm run docs && npm run example:build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@2nthony/prettier-config": "1.0.0",
"@poi/plugin-typescript": "12.3.1",
"@saika/github-corner": "0.1.1",
"dts-bundle-generator": "5.9.0",
"esbuild": "0.14.26",
"husky": "3.1.0",
"lint-staged": "9.5.0",
"poi": "12.10.3",
"postcss": "7.0.39",
"postcss-preset-env": "6.7.0",
"prettier": "1.19.1",
"saika": "2.13.7",
"saika-code-block-buttons": "1.0.1",
"semantic-release": "17.4.7",
"typedoc": "0.15.8",
"typescript": "4.5.3",
"vue": "2.6.14",
"vue-template-compiler": "2.6.14",
"vuedown": "3.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
]
}
}