-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.66 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@nexim/service-worker-notify",
"version": "1.0.0-alpha.5",
"description": "Handles service worker notifications and displays snackbar messages with our without Close Button.",
"keywords": [
"snackbar",
"notification",
"notify",
"service worker",
"typescript",
"nexim"
],
"homepage": "https://github.com/the-nexim/web-app-toolkit/tree/next/packages/service-worker-notify#readme",
"bugs": {
"url": "https://github.com/the-nexim/web-app-toolkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/the-nexim/web-app-toolkit",
"directory": "packages/snackbar"
},
"license": "AGPL-3.0-only",
"author": "S. Amir Mohammad Najafi <[email protected]> (www.njfamirm.ir)",
"contributors": [
"Arash Ghardashpoor <[email protected]> (https://www.agpagp.ir)"
],
"type": "module",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.mjs",
"require": "./dist/main.cjs"
}
},
"main": "./dist/main.cjs",
"module": "./dist/main.mjs",
"types": "./dist/main.d.ts",
"files": [
"**/*.{js,mjs,cjs,map,d.ts,html,md,LEGAL.txt}",
"LICENSE",
"!**/*.test.js",
"!demo/**/*"
],
"scripts": {
"build": "wireit",
"test": "wireit",
"watch": "wireit"
},
"dependencies": {
"@alwatr/i18n": "^2.0.4",
"@alwatr/logger": "^5.0.0",
"@alwatr/package-tracer": "^5.0.0",
"@alwatr/wait": "^1.1.16",
"@nexim/service-worker": "1.0.4",
"@nexim/snackbar": "^1.0.4"
},
"devDependencies": {
"@alwatr/nano-build": "^5.0.0",
"@alwatr/type-helper": "^5.0.0",
"@nexim/typescript-config": "^2.0.0",
"ava": "^6.2.0",
"typescript": "^5.7.3",
"wireit": "^0.14.11"
},
"publishConfig": {
"access": "public"
},
"nano-build": {
"platform": "browser"
},
"wireit": {
"test": {
"command": "NODE_OPTIONS=\"$NODE_OPTIONS --enable-source-maps --experimental-vm-modules\" ava"
},
"build": {
"dependencies": [
"build:type",
"build:es"
]
},
"build:es": {
"command": "nano-build --preset=module",
"files": [
"src",
"tsconfig.json"
],
"clean": "if-file-deleted",
"output": [
"dist/es",
"tsconfig.tsbuildinfo"
]
},
"build:type": {
"command": "tsc --build"
},
"watch": {
"dependencies": [
"watch:ts"
]
},
"watch:ts": {
"command": "tsc --build --watch --preserveWatchOutput",
"dependencies": [
"watch:es"
]
},
"watch:es": {
"command": "nano-build --preset=module -- --watch",
"service": true
}
}
}