-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "react-kanca",
"version": "1.5.0",
"description": "React-kanca, karmaşıklığı azaltarak uygulamalarınızın daha okunabilir, yönetilebilir ve yeniden kullanılabilir olmasını sağlar.",
"author": "anilcanboga",
"license": "MIT",
"homepage": "https://react-kanca.com/",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"source": "src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "node build.js",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"dev": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"cross-env": "^7.0.2",
"esbuild": "^0.24.0",
"gh-pages": "^6.1.1",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1"
},
"files": [
"dist"
],
"dependencies": {
"js-cookie": "^3.0.5"
},
"keywords": [
"react",
"hooks",
"react-hooks",
"frontend",
"library",
"next",
"nextjs",
"kanca"
]
}