-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 849 Bytes
/
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
{
"name": "@nanometer/nm",
"version": "2.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview --config vite.demo.config.js",
"build:demo": "vite build --config vite.demo.config.js"
},
"files": [
"dist"
],
"keywords": [
"message",
"alert"
],
"main": "dist/nm.js",
"bin": {
"nm": "dist/nm.js"
},
"exports": {
".": {
"import": "./dist/nm.js",
"require": "./dist/nm.js"
},
"./dist/style.css": "./dist/style.css"
},
"types": "dist/main.d.ts",
"devDependencies": {
"@emotion/babel-plugin": "^11.12.0",
"@emotion/css": "^11.13.4",
"@types/estree": "^1.0.5",
"@types/resolve": "^1.20.6",
"sass": "^1.74.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.1"
}
}