-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.88 KB
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
{
"name": "@zeitonline/notification",
"version": "2.3.1",
"description": "Notifications keep you informed about results, warnings and errors.",
"author": {
"name": "DIE ZEIT",
"email": "engineering@zeit.de"
},
"homepage": "https://github.com/ZeitOnline/notification#readme",
"license": "MIT",
"type": "module",
"main": "./dist/notification.js",
"module": "./dist/notification.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./dist/notification.js",
"default": "./dist/notification.js"
}
},
"files": [
"dist",
"index.d.ts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"demo": "vite --open demo/index.html",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build",
"test": "vitest run src/tests/notification.test.ts",
"test:guidepup": "vitest run src/tests/notification.guidepup.test.ts --test-timeout=30000 --maxWorkers=1",
"test:all": "npm test && npm run test:guidepup",
"copy:zds": "mkdir -p ./src/assets/css && cp node_modules/@zeitonline/design-system/design-system.css ./src/assets/css/design-system.css"
},
"devDependencies": {
"@guidepup/virtual-screen-reader": "^0.32.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/user-event": "^14.6.1",
"@zeitonline/design-system": "^0.3.4",
"@zeitonline/eslint-config": "^3.0.0",
"@zeitonline/prettier-config": "^2.0.0",
"eslint-plugin-compat": "^7.0.1",
"jsdom": "^29.0.0",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZeitOnline/notification.git"
},
"keywords": [
"ui",
"toaster",
"notification",
"alerts",
"status messages",
"feedback",
"real-time updates"
]
}