-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.3 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
{
"name": "@veksa/react-cat",
"version": "0.0.2",
"author": "Veksa",
"description": "meow",
"keywords": [
"react",
"meow"
],
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.16.0"
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "tsc --noEmit",
"clean": "shx rm -rf lib && shx rm -rf es",
"build:cjs": "tsc -p tsconfig.build.json --outDir lib -d -t es5",
"build:es": "tsc -p tsconfig.build.json --outDir es -m es6",
"build": "yarn clean && yarn build:cjs && yarn build:es"
},
"directories": {
"lib": "lib"
},
"files": [
"lib/",
"es/"
],
"sideEffects": false,
"homepage": "https://github.com/veksa/react-cat#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/veksa/react-cat.git"
},
"bugs": {
"url": "https://github.com/veksa/react-cat/issues"
},
"devDependencies": {
"@types/node": "20.10.5",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"react": "18.2.0",
"react-dom": "18.2.0",
"shx": "0.3.4",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"dependencies": {
"@veksa/cat.ts": "0.0.5"
}
}