-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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": "@akaswap/ui",
"version": "0.0.1",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "",
"repository": {
"url": ""
},
"scripts": {
"dev": "next dev",
"build": "tsup && npm link",
"dev-install": "npm install && npm link @akaswap/core",
"prettier": "prettier --ignore-path .gitignore .",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check"
},
"keywords": [
"akaswap"
],
"author": "akaSwap",
"license": "ISC",
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"autoprefixer": "^10.4.19",
"next": "^14.2.5",
"postcss": "^8.4.40",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.5",
"react": "^18.3.1",
"tailwindcss": "^3.4.7",
"tsup": "^8.2.1",
"typescript": "^5.5.3"
},
"dependencies": {
"@akaswap/core": "https://github.com/akaSwap/akaswap-core.git",
"@google/model-viewer": "^3.5.0",
"fflate": "^0.8.2",
"mime": "^4.0.4",
"mime-types": "^2.1.35"
}
}