-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
58
59
60
61
62
{
"name": "react-paper-renderer",
"version": "0.0.4",
"description": "Paper.js renderer for React",
"author": "Bojan Hribernik <bojan.hribernik@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/react-paper/react-paper-renderer",
"repository": {
"type": "git",
"url": "https://github.com/react-paper/react-paper-renderer.git"
},
"bugs": {
"url": "https://github.com/react-paper/react-paper-renderer/issues"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --importHelpers",
"clean": "rimraf -rf ./dist",
"watch": "tsc -w",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"test": "jest --env=jsdom"
},
"dependencies": {
"paper": "^0.12.15",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-reconciler": "^0.29.0"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.6",
"@types/node": "^16.10.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-reconciler": "^0.28.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"canvas": "^2.9.3",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"resolutions": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0"
}
}