-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.77 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.77 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "linked-bundle-node-map",
"version": "1.0.8",
"main": "dist/bundle.js",
"types": "dist/LinkedBundleNodeMap.d.ts",
"funding": "https://github.com/sponsors/akalinux",
"homepage": "https://github.com/akalinux/linked-bundle-node-map",
"scripts": {
"dev": "webpack -c webpack-dev.config.ts",
"watch": "webpack -w -c ./webpack-dev.config.ts",
"build": "rm -rf dist;webpack -c ./webpack-prod.config.ts",
"server": "cd demo_app;npm run server",
"testapp": "cd demo_app;npm run build",
"tw": "cd demo_app;npm run watch",
"clean": "rm -rf dist public/js||/bin/true",
"deploy": "npm run build && bash -c 'cd demo_app;npm run build'; gh-pages -d public",
"test": "npx eslint src && jest",
"push": "npm run clean && npm run test && npm run build && npm run publish && npm run deploy"
},
"files": [
"dist"
],
"keywords": [
"diagram",
"network",
"map",
"interactive",
"workflow"
],
"author": "AKALINUX<akalinux@cpan.org>",
"license": "MIT",
"description": "General diagram tool. Create flow charts, network maps, UML diagrams etc..",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/register": "^7.28.3",
"@eslint/js": "^9.39.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"eslint": "^9.39.1",
"gh-pages": "^6.3.0",
"jest": "^30.0.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {}
}