-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "tilg",
"version": "0.1.1",
"description": "A tiny logger hook for debugging React components.",
"keywords": [
"react",
"react hook",
"logger",
"debug"
],
"main": "index.js",
"types": "dist/development.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/**"
],
"scripts": {
"build": "pnpm build:dev && pnpm build:prod",
"build:dev": "tsup src/development.ts --dts --env.NODE_ENV development",
"build:prod": "tsup src/production.ts --env.NODE_ENV production",
"coverage": "vitest run --coverage",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuding/tilg.git"
},
"author": "Shu Ding",
"license": "MIT",
"bugs": {
"url": "https://github.com/shuding/tilg/issues"
},
"homepage": "https://github.com/shuding/tilg#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^18.0.0",
"@types/react-test-renderer": "^17.0.1",
"react": "^18.0.0",
"react-test-renderer": "^18.0.0",
"tsup": "^5.12.4",
"typescript": "^4.6.3",
"vitest": "^0.9.2"
},
"peerDependencies": {
"react": "^18.0.0 || ^17.0.0"
}
}