-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.42 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
{
"name": "@lbgm/tiny-dialog",
"version": "1.0.3",
"author": "@lbgm",
"description": "JS dialog box",
"license": "MIT",
"main": "build/src/index.js",
"exports": {
".": {
"import": "./build/src/index.js",
"require": "./build/src/index.js"
},
"./style": {
"import": "./build/src/assets/style.css",
"require": "./build/src/assets/style.css"
},
"./cdn": {
"import": "./build/src/c.js",
"require": "./build/src/index.js"
}
},
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"keywords": [
"vuejs",
"angular",
"dialog box",
"typescript",
"javascript",
"typescript dialog box"
],
"engines": {
"node": ">=14.18.3",
"npm": ">=6.14.15"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc && cp -R ./src/assets build/src/.",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"devDependencies": {
"@types/node": "^14.18.34",
"eslint": "^7.32.0",
"gts": "^3.1.0",
"typescript": "^4.0.3"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/lbgm/tiny-dialog.git"
},
"bugs": {
"url": "https://github.com/lbgm/tiny-dialog/issues"
},
"homepage": "https://github.com/lbgm/tiny-dialog#readme"
}