-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 951 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
{
"name": "lumino-tsx",
"version": "0.1.0",
"description": "Wrapper for creating Lumino-based user interfaces using TSX",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.js",
"typings": "dist/esm/index.d.ts",
"scripts": {
"build:umd": "tsc -p src -m es6 --outdir dist/esm && rollup -c",
"prepare": "tsc -p src && (checkver lt 5.0.0 || npm run build:umd)"
},
"author": "Juha Järvi",
"license": "CC0",
"repository": {
"type": "git",
"url": "https://github.com/requirex/lumino-tsx.git"
},
"bugs": {
"url": "https://github.com/requirex/lumino-tsx/issues"
},
"homepage": "https://github.com/requirex/lumino-tsx#readme",
"devDependencies": {
"@types/node": "^14.0.5",
"autoroll": "^0.2.0",
"rollup": "^2.10.8",
"typescript": "^3.9.3"
},
"dependencies": {
"@lumino/widgets": "^1.12.2",
"requirex": "^0.3.2",
"tslib": "^2.0.0"
}
}