-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"author": {
"name": "Silas B. Domingos",
"email": "hello@balmante.eti.br",
"url": "https://balmante.eti.br"
},
"name": "@singleware/ui-dialog",
"description": "Singleware UI dialog package.",
"license": "MIT",
"version": "1.0.34",
"main": "release/source/index.js",
"types": "release/types/index.d.ts",
"keywords": [
"dialog",
"ui dialog",
"user interface",
"shadow dom",
"browser"
],
"repository": {
"type": "git",
"url": "https://github.com/singleware/ui-dialog"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@singleware/class": "^1.1.12",
"@singleware/jsx": "^1.0.12",
"@singleware/ui-control": "^1.1.2"
},
"devDependencies": {
"prettier": "^1.14.3",
"typescript": "^2.9.2"
},
"prettier": {
"printWidth": 140,
"tabWidth": 2,
"singleQuote": true,
"semi": true
},
"scripts": {
"build": "npm run make && npm run update",
"make": "tsc",
"update": "cp -Rf ./source/*.d.ts ./release/types"
}
}