-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.06 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
72
{
"name": "themtfy",
"version": "2.1.0",
"description": "Lightweight, framework-free toast notifications for the web",
"type": "module",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/themtfy.cjs",
"module": "./dist/themtfy.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/themtfy.js",
"require": "./dist/themtfy.cjs"
},
"./style.css": "./dist/style.css"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite --config demo/vite.config.ts",
"demo:dev": "DEMO_BASE=/ vite --config demo/vite.config.ts",
"demo:build": "vite build --config demo/vite.config.ts",
"demo:preview": "vite preview --config demo/vite.config.ts --port 4173",
"typecheck": "tsc --noEmit",
"build": "tsc --noEmit && vite build && vite build --config demo/vite.config.ts",
"preview": "vite preview",
"test": "vitest run",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:chromium": "playwright test --project=chromium",
"pack:check": "npm pack --dry-run",
"verify": "npm run typecheck && npm run test:coverage && npm run build && npm run test:e2e:chromium && npm run pack:check"
},
"devDependencies": {
"@playwright/test": "^1.63.0",
"@typescript/typescript6": "^6.0.2",
"@vitest/coverage-v8": "^5.0.0",
"jsdom": "^30.0.1",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vite-plugin-dts": "^5.1.0",
"vitest": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmiraliMotahari/themtfy.git"
},
"bugs": {
"url": "https://github.com/AmiraliMotahari/themtfy/issues"
},
"homepage": "https://amiralimotahari.github.io/themtfy/",
"author": "Amirali Motahari",
"keywords": [
"toast",
"toast-notification",
"notifications",
"javascript",
"typescript",
"framework-free",
"vanilla-js",
"browser",
"ui"
]
}