-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
{
"name": "@naskar/nkui",
"version": "0.0.9",
"description": "UI Components",
"author": "Rafael Uchoa - naskar",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/rafaeluchoa/nkui-t.git"
},
"bugs": {
"url": "https://github.com/rafaeluchoa/nkui-t/issues"
},
"homepage": "https://github.com/rafaeluchoa/nkui-t#readme",
"main": "dist/index.js",
"types": "dist/index.ts",
"scripts": {
"build-backend": "tsc -p backend/",
"build-frontend": "cpx frontend/assets/sandbox/index.html target/frontend && browserify frontend/sandbox/App.ts -p [ tsify -p frontend/ ] -p [ parcelify -o target/frontend/bundle.css ] -o target/frontend/bundle.js",
"build": "cpx frontend/assets/nkui/** dist/ && tsc -p frontend/ --outDir dist --declaration"
},
"dependencies": {},
"devDependencies": {
"@types/express": "4.16.1",
"browserify": "16.2.3",
"cpx": "1.5.0",
"express": "4.16.4",
"parcelify": "2.2.1",
"tsify": "4.0.1",
"typescript": "3.4.2"
},
"style": [
"frontend/assets/nkui/nkui.css",
"frontend/assets/sandbox/app.css"
]
}