-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 887 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
{
"name": "@kaapp/debug-graph",
"version": "0.0.3",
"description": "A lightweight, performant debug graph renderer",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": "https://github.com/Kaapp/debug-graph.git",
"author": "Kaapp",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {},
"scripts": {
"build": "yarn && rm -rf ./dist && rollup -c",
"package": "yarn pack",
"prepublish": "yarn build",
"start": "webpack serve --config webpack.dev.config.js --open",
"test": "echo \"Error: no test specified\" && exit 1"
}
}