-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "erase2d",
"version": "2.0.0-0",
"description": "Canvas 2d Eraser",
"author": "ShaMan123",
"type": "module",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ShaMan123/erase2d.git"
},
"bugs": {
"url": "https://github.com/ShaMan123/erase2d/issues"
},
"homepage": "https://github.com/ShaMan123/erase2d#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run prepublish --workspaces --if-present",
"start": "npm run dev -w @erase2d/app"
},
"keywords": [
"erase",
"erase2d",
"eraser",
"erasing",
"canvas"
],
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"rollup": "^4.13.0",
"rollup-plugin-delete": "^2.0.0",
"tslib": "^2.6.2"
},
"workspaces": [
"packages/app",
"packages/core",
"packages/fabric"
]
}