-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
82 lines (82 loc) · 2.64 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
{
"name": "react-vtk-js",
"version": "0.0.1",
"description": "React based declarative vtk.js visualization pipeline",
"author": "Kitware Inc",
"license": "BSD-3-Clause",
"repository": "Kitware/react-vtk-js",
"type": "module",
"main": "dist/umd/react-vtk.js",
"module": "dist/esm/index.js",
"types": "dist/esm/src/index.d.ts",
"source": "src/index.ts",
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/runtime": "^7.19.0",
"deep-equal": "^2.0.5"
},
"scripts": {
"prebuild": "npm run test:lint",
"build": "rimraf dist && rollup -c",
"prepare": "npm run build",
"test": "npm run test:lint && npm run test:build",
"test:build": "npm run build",
"test:lint": "eslint src",
"fix:prettier": "prettier --config .prettierrc --write \"src/**/*.tsx?\"",
"fix:eslint": "eslint --fix src",
"fix": "npm run fix:prettier && npm run fix:eslint",
"predeploy": "cd usage && npm install && npm run build",
"deploy": "gh-pages -d usage/dist -f -r $GIT_PUBLISH_URL",
"commit": "git cz",
"semantic-release": "semantic-release",
"dev": "rollup -c --watch"
},
"peerDependencies": {
"@kitware/vtk.js": "^29.4.5",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@kitware/vtk.js": "^29.4.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-eslint": "^9.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/deep-equal": "^1.0.1",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"commitizen": "4.3.0",
"cross-env": "^7.0.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"rollup-plugin-analyzer": "^4.0.0",
"semantic-release": "20.1.0",
"typescript": "^4.9.5"
},
"files": [
"dist"
]
}