-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"author": {
"name": "Silas B. Domingos",
"email": "hello@balmante.eti.br",
"url": "https://balmante.eti.br"
},
"name": "@singleware/jsx",
"description": "Singleware JSX package.",
"license": "MIT",
"version": "1.0.32",
"main": "release/source/index.js",
"types": "release/types/index.d.ts",
"keywords": [
"jsx",
"tsx",
"web components",
"custom elements",
"shadow dom"
],
"repository": {
"type": "git",
"url": "https://github.com/singleware/jsx"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@singleware/class": "^1.1.14"
},
"devDependencies": {
"@types/node": "^13.13.4",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
},
"prettier": {
"printWidth": 140,
"tabWidth": 2,
"singleQuote": true,
"semi": true
},
"scripts": {
"build": "npm run clean && npm run make",
"clean": "rm -rf ./release",
"make": "npm run make-source && npm run make-examples",
"make-source": "npm run compile-source && npm run update-source",
"compile-source": "tsc -p ./source",
"update-source": "cp -Rf ./source/*.d.ts ./release/types",
"make-examples": "npm run compile-examples",
"compile-examples": "tsc -p ./examples"
}
}