forked from reservoirprotocol/reservoir-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.84 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
{
"private": true,
"name": "reservoir-kit",
"version": "0.0.0",
"description": "ReservoirKit is the official frontend kit to get you started building dApps with the ReservoirProtocol.",
"author": "Reservoir Protocol",
"license": "MIT",
"workspaces": [
"packages/*",
"demo",
"sdk-demo"
],
"scripts": {
"lint": "tsc --skipLibCheck --noEmit",
"demo": "yarn workspace reservoir-kit-demo dev",
"clean": "yarn workspaces foreach --exclude primitives --exclude ssr-testing run clean",
"test": "yarn workspace @reservoir0x/reservoir-sdk test",
"dev:clean": "./scripts/package-cleanup.sh",
"dev": "yarn dev:watch",
"dev:watch": "parcel watch 'packages/*' --no-cache --no-hmr --no-source-maps",
"build": "yarn build:config && yarn build:packages && yarn build:cleanup && yarn postbuild",
"build:dev": "parcel build './packages/*'",
"build:config": "mv tsconfig.json tsconfig.tmp.json && mv tsconfig.production.json tsconfig.json",
"build:packages": "parcel build 'packages/*' --no-cache && yarn build:fix-type-defs",
"build:fix-type-defs": "node ./scripts/fix-type-defs-imports",
"build:cleanup": "mv tsconfig.json tsconfig.production.json && mv tsconfig.tmp.json tsconfig.json",
"postbuild": "node ./scripts/check-missing-types",
"publish:stable": "yarn workspaces foreach --no-private --exclude reservoir-kit --exclude demo --exclude sdk-demo npm publish --tolerate-republish --access public",
"reset": "yarn clean && rm -rf node_modules .yarn/cache .parcel-cache",
"tags:delete": "git tag --delete sdk-demo@undefined && git tag --delete reservoir-kit-demo@undefined",
"package:change": "yarn changeset && git stage ./.changeset/* && git commit --m \"feat: changeset\" && git push",
"package:release": "yarn clean && yarn build && changeset version && yarn publish:stable && changeset tag && yarn tags:delete && git push --follow-tags",
"prepare": "husky"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@parcel/core": "^2.9.3",
"@parcel/optimizer-data-url": "^2.9.3",
"@parcel/packager-ts": "^2.9.3",
"@parcel/transformer-inline-string": "^2.9.3",
"@parcel/transformer-typescript-tsc": "^2.9.3",
"@parcel/transformer-typescript-types": "^2.9.3",
"@types/node": "^17.0.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"buffer": "^6.0.3",
"husky": "^9.0.11",
"parcel": "^2.9.3",
"pinst": "^3.0.0",
"prettier": "^2.5.1",
"process": "^0.11.10",
"replace-in-files": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"viem": "~2.7.8"
},
"engines": {
"node": ">=12",
"yarn": ">=2"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/react-flatpickr": "^3.8.7",
"next-remote-watch": "^1.0.0"
}
}