-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.81 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
{
"version": null,
"name": "@fly-lab/template-lib-react",
"description": "Starting reactjs library template with tsup.",
"private": true,
"author": "DHN Chandan",
"license": "MIT",
"main": "./dist/index.cjs",
"typings": "./dist/index.d.ts",
"module": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.cjs",
"node": "./dist/index.cjs"
}
},
"type": "module",
"files": [
"dist/*"
],
"engines": {
"node": ">=16"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/fly-lab/template-lib-react.git"
},
"bugs": {
"email": "fly.dev.org@gmail.com",
"url": "https://github.com/fly-lab/template-lib-react/issues"
},
"homepage": "https://github.com/fly-lab/template-lib-react.git",
"keywords": [
"typescript",
"javascript",
"react",
"library",
"npm",
"tsup"
],
"scripts": {
"build": "tsup",
"dev": "pnpm build --watch",
"prepare": "husky install",
"cz": "git cz",
"cz:install": "commitizen init cz-conventional-changelog --yarn --dev --exact",
"cz:force": "commitizen init cz-conventional-changelog --yarn --dev --exact --force",
"ncu": "npx npm-check-updates",
"ncu:u": "npx npm-check-updates -u"
},
"devDependencies": {
"@fly-lab/eslint-config": "^1.2.1",
"@fly-lab/tsconfig": "^3.0.1",
"@swc/core": "^1.3.96",
"@types/node": "^20.9.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"terser": "^5.24.0",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}