-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "blueprint-renderer",
"version": "0.0.17",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"targets": {
"types": {},
"main": {
"outputFormat": "commonjs"
},
"module": {
"outputFormat": "esmodule"
},
"global": {
"outputFormat": "esmodule",
"includeNodeModules": true
}
},
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "^2.0.1",
"@parcel/transformer-sass": "^2.0.1",
"@parcel/transformer-typescript-types": "^2.0.1",
"@tsconfig/recommended": "^1.0.1",
"parcel": "^2.0.1",
"typescript": "^4.5.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3"
},
"dependencies": {
"image-promise": "^7.0.1",
"konva": "^8.3.0",
"parse-css-color": "^0.1.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "yarn parcel build --no-autoinstall",
"build": "yarn parcel build --no-autoinstall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strvert/blueprint-renderer.git"
},
"keywords": [
"blueprint",
"unrealengine"
],
"author": "strvert",
"bugs": {
"url": "https://github.com/strvert/blueprint-renderer/issues"
},
"homepage": "https://github.com/strvert/blueprint-renderer#readme",
"description": "A Blueprint renderer for UnrealEngine that runs in the browser."
}