-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
46 lines (46 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
37
38
39
40
41
42
43
44
45
46
{
"name": "flow-view",
"description": "is a visual editor for dataflow programming",
"version": "6.0.1",
"license": "MIT",
"homepage": "http://fibo.github.io/flow-view",
"author": {
"name": "Gianluca Casati",
"url": "http://fibo.github.io"
},
"type": "module",
"types": "flow-view.d.ts",
"exports": {
".": {
"import": "./flow-view.js",
"types": "./flow-view.d.ts"
}
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"check_types": "tsc --project .",
"esbuild": "esbuild --bundle index.js --minify-whitespace --outfile=flow-view.js",
"preversion": "npm run esbuild",
"postversion": "git push origin v${npm_package_version}; git push origin main; npm publish",
"prettier": "prettier --write .",
"start": "npx serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/fibo/flow-view.git"
},
"keywords": [
"dataflow",
"visual",
"editor",
"vanilla",
"web-component"
],
"bugs": {
"url": "https://github.com/fibo/flow-view/issues"
},
"dependencies": {}
}