-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "@litecanvas/plugin-migrate",
"version": "0.10.1",
"description": "Sometimes upgrading litecanvas to a new version can be a lot of work. This plugin makes this easier, by restoring the Litecanvas APIs that were removed in newer versions, and additionally shows warnings in the browser console when removed and/or deprecated APIs are used.",
"author": "Luiz Bills <luizbills@pm.me>",
"license": "MIT",
"homepage": "https://github.com/litecanvas/plugin-migrate",
"bugs": {
"url": "https://github.com/litecanvas/plugin-migrate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/litecanvas/plugin-migrate.git#main"
},
"type": "module",
"main": "src/index.js",
"unpkg": "./dist/dist.js",
"browser": "./dist/dist.js",
"keywords": [
"litecanvas",
"migration",
"compatibility"
],
"scripts": {
"dev": "esbuild src/_web.js --bundle --watch --outfile=dist/dist.js --servedir=.",
"build": "esbuild src/_web.js --drop-labels=DEV --bundle --minify --outfile=dist/dist.js",
"prepare": "npm run build",
"test": "ava --tap | tap-min"
},
"devDependencies": {
"esbuild": "^0.25.12",
"@litecanvas/jsdom-extras": "^1.1.0",
"@types/jsdom": "^21.1.7",
"ava": "^6.4.1",
"jsdom": "^26.1.0",
"tap-min": "^3.0.0"
},
"dependencies": {
"@litecanvas/utils": "latest"
},
"peerDependencies": {
"litecanvas": "latest"
},
"files": [
"dist",
"src"
],
"ava": {
"files": [
"tests/**/*.js"
]
}
}