-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "reactik",
"version": "0.0.4",
"description": "React library",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack --watch --config webpack.config.dev.js",
"test": "echo todo-test",
"prerelease": "rimraf dist && npm run build",
"release": "np --tag latest"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/react": "^18.2.32",
"@types/react-dom": "^18.2.14",
"copy-webpack-plugin": "^11.0.0",
"np": "^8.0.4",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"author": "beqaweb",
"license": "MIT",
"repository": {
"url": "git+https://github.com/beqaweb/reactik.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/beqaweb/reactik/issues"
},
"keywords": [
"reactik",
"react",
"library",
"beqaweb"
],
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
}
}