-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "@bipboys/pure-gallery",
"version": "0.0.28",
"description": "Simple product gallery based on Pure React Carousel and Baseweb",
"author": "Bipboys Dev Team",
"sideEffects": false,
"main": "./build/node/index.js",
"module": "./build/esm/index.js",
"types": "./types/index.d.ts",
"files": [
"build/",
"types/",
"!build/*.tsbuildinfo",
"!build/**/tests/",
"index.js",
"index.esnext"
],
"scripts": {
"build": "npm run build:clean && npm run build-esm && npm run build-node && npm run build:types",
"build-esm": "swc ./src -d build/esm -C module.type=es6",
"build-node": "swc ./src -d build/node -C module.type=commonjs",
"build:clean": "rimraf ./build && mkdir build",
"build:types": "tsc -p tsconfig.json",
"clean": "rimraf ./node_modules && npm run build:clean"
},
"dependencies": {
"@bipboys/ts-utils": "0.0.10",
"@heroicons/react": "2.0.18",
"classnames": "^2.3.2",
"pure-react-carousel": "^1.30.1",
"tslib": "^2.5.3"
},
"devDependencies": {
"@bipboys/typescript-preset": "0.0.1",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.63",
"@types/node": "^20.3.1",
"process": "0.11.10",
"rimraf": "^5.0.1",
"typescript": "5.1.3"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
}
}