generated from maxgfr/typescript-react-lib-swc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.18 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "call-modal",
"version": "1.3.1",
"author": "SMCodesP <samuel.silva513@etec.sp.gov.br>",
"license": "MIT",
"description": "A minimalist call modal using static methods",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/SMCodesP/call-modal.git"
},
"bugs": {
"url": "https://github.com/SMCodesP/call-modal/issues"
},
"homepage": "https://github.com/SMCodesP/call-modal#readme",
"files": [
"build"
],
"scripts": {
"dev": "nodemon",
"develop": "bun -r @swc-node/register ./src/index.ts",
"clean": "rimraf build",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"build:swc": "swc ./src -d build",
"build:swc:watch": "swc ./src -d build -w",
"release": "semantic-release --no-ci",
"format": "biome format --write src",
"lint": "biome lint src"
},
"lint-staged": {
"./src/**/*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --apply --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.4",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.0.3",
"@swc-node/register": "1.11.1",
"@swc/cli": "0.7.8",
"@swc/core": "1.13.3",
"@swc/plugin-styled-jsx": "^3.0.1",
"@types/node": "24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/uuid": "^11.0.0",
"bootstrap": "^5.3.7",
"gh-pages": "^6.3.0",
"nodemon": "3.1.10",
"react": "^19.1.1",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.1.1",
"rimraf": "6.0.1",
"semantic-release": "^24.2.7",
"typescript": "^5.9.2"
},
"types": "./build/index.d.ts",
"dependencies": {
"@uidotdev/usehooks": "^2.4.1",
"uuid": "^11.1.0"
},
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.js"
}
}
}