forked from simple-notify/simple-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "simple-notify",
"email": "[email protected]",
"description": "Simple Notify is a pure Javascript library to show nice and customizable alert notifications.",
"keywords": [
"notification",
"toast",
"alert",
"notify"
],
"version": "1.0.4",
"homepage": "https://simple-notify.github.io/simple-notify/",
"repository": "https://github.com/simple-notify/simple-notify",
"author": "Doğukan Çavuş",
"license": "MIT",
"main": "./dist/simple-notify.min.js",
"module": "./dist/simple-notify.mjs",
"types": "./dist/simple-notify.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "concurrently \"tsup --watch\" \"node scripts/copy-dist.js\"",
"open": "browser-sync start --server 'website' --files 'src/**/*.*', 'website/**/*.*'",
"build": "tsup",
"prepublishOnly": "pnpm i && pnpm build",
"deploy": "gh-pages -d website",
"lint": "eslint . --ext .ts",
"format": "prettier --write ./src"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "pnpm format && git add ."
}
},
"devDependencies": {
"@swc/core": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"browser-sync": "^3.0.2",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"postcss": "^8.4.35",
"postcss-nested": "^6.0.1",
"postcss-nesting": "^12.0.2",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
}
}