-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
{
"name": "@backpack-fux/pylon-sdk",
"version": "0.2.973",
"description": "Pylon SDK",
"author": "Backpack",
"license": "UNLICENSED",
"keywords": [
"api",
"client",
"pylon"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./hooks": "./dist/hooks/index.js",
"./api": "./dist/api/index.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"release": "standard-version && pnpm run build",
"prepublishOnly": "pnpm run build",
"unfuck": "rm -rf .next && rm -rf node_modules && rm -rf package-lock.json rm -rf bun.lockb && bun i"
},
"dependencies": {
"axios": "^0.24.0",
"event-source-polyfill": "^1.0.31"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/event-source-polyfill": "^1.0.5",
"@types/react": "^18.3.14",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"standard-version": "^9.5.0",
"tslib": "^2.8.1",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^18.3.1",
"@nextui-org/button": "^2.2.2",
"@nextui-org/card": "^2.2.2",
"@nextui-org/modal": "^2.2.2",
"@nextui-org/progress": "^2.2.2",
"@nextui-org/system": "^2.4.2",
"framer-motion": "^11.13.1"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
}
}