-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.15 KB
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
{
"name": "ueblueprint",
"description": "Unreal Engine's Blueprint visualization web library",
"version": "2.0.0",
"type": "module",
"main": "dist/ueblueprint.js",
"types": "types.js",
"scripts": {
"build": "rollup --config && sass scss/export.scss:dist/css/ueb-style.css && sass scss/export.scss:dist/css/ueb-style.min.css --style=compressed",
"start": "npx http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barsdeveloper/ueblueprint.git"
},
"keywords": [
"unreal",
"engine",
"blueprint"
],
"author": "barsdeveloper",
"license": "MIT",
"bugs": {
"url": "https://github.com/barsdeveloper/ueblueprint/issues"
},
"homepage": "https://github.com/barsdeveloper/ueblueprint#readme",
"devDependencies": {
"@playwright/test": "1.49",
"@rollup/plugin-node-resolve": "^16",
"@rollup/plugin-terser": "^0",
"concurrently": "^9",
"http-server": "^14",
"rollup": "^4 || ^3 || ^2",
"rollup-plugin-copy": "^3",
"rollup-plugin-minify-html-literals": "^1",
"sass": "^1",
"terser": "^5"
},
"dependencies": {
"lit": "^3",
"parsernostrum": "^1"
}
}