-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 856 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 856 Bytes
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
{
"name": "@nanometer/nm",
"version": "3.2.0",
"type": "module",
"description": "A lightweight, modern message notification library",
"main": "dist/nm.js",
"module": "dist/nm.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --config vite.demo.config.js",
"build:demo": "vite build --config vite.demo.config.js"
},
"files": [
"dist"
],
"keywords": [
"message",
"alert",
"notification",
"toast"
],
"exports": {
".": {
"import": "./dist/nm.js",
"types": "./dist/main.d.ts"
},
"./style.css": "./dist/style.css"
},
"types": "dist/main.d.ts",
"devDependencies": {
"@types/estree": "^1.0.8",
"@types/resolve": "^1.20.6",
"sass": "^1.91.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vite-plugin-dts": "^4.5.4"
}
}