-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
106 lines (106 loc) · 2.78 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "pikaso",
"version": "2.8.3",
"description": "Seamless, Fully-typed and Fully-tested HTML5 Canvas Library",
"author": "Ramin Mousavi <[email protected]> (http://github.com/raminious)",
"license": "MIT",
"scripts": {
"typecheck": "tsc",
"commitlint": "commitlint",
"typedoc": "typedoc",
"test": "npm-run-all test:unit test:e2e --parallel",
"test:unit": "jest",
"test:e2e": "cypress run",
"coverage": "jest --coverage",
"_postinstall": "husky install",
"prepublish": "pinst --disable",
"postpublish": "pinst --enable",
"clean": "rimraf lib && rimraf esm && rimraf umd",
"build": "npm run clean && rollup -c --bundleConfigAsCjs"
},
"dependencies": {
"deepmerge": "^4.3.1",
"konva": "^9.3.6",
"typescript": "^5.4.5"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-jest": "^29.7.0",
"canvas": "^2.11.2",
"cypress": "^13.8.1",
"datauri": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.0.0",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.17.2",
"rollup-plugin-ignore": "^1.0.10",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.13"
},
"keywords": [
"canvas",
"drawing",
"graphic",
"crop",
"rotate",
"shape",
"draw",
"flip",
"text",
"pencil",
"konva",
"fabric"
],
"browser": {
"canvas": false,
"jsdom": false
},
"bugs": {
"url": "https://github.com/pikasojs/pikaso/issues"
},
"homepage": "https://pikaso.app",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/pikasojs/pikaso.git"
},
"typings": "esm/index.all.d.ts",
"module": "esm/index.all.js",
"main": "lib/index.node.all.js",
"unpkg": "umd/pikaso.min.js",
"sideEffects": false,
"files": [
"esm",
"lib",
"umd",
"LICENSE",
"README"
]
}