-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
36 lines (36 loc) · 1.18 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
{
"name": "@ark-project/react",
"version": "1.1.3",
"description": "",
"main": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
"typings": "./dist/types/src/index.d.ts",
"scripts": {
"build": "pnpm build:clean && pnpm build:esm+types",
"build:clean": "rm -rf dist",
"build:esm+types": "tsc --project tsconfig.build.json --outDir ./dist/esm --declaration --declarationMap --declarationDir ./dist/types",
"clean": "rm -rf .turbo dist node_modules tsconfig.tsbuildinfo",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --watch src --exec \"pnpm run build\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ark-project/core": "workspace:*",
"@starknet-react/chains": "^3.1.0",
"@starknet-react/core": "^3.5.0",
"react": "^18",
"react-dom": "^18",
"starknet": "^6.11.0"
},
"devDependencies": {
"@ark-project/eslint-config": "workspace:*",
"@ark-project/typescript-config": "workspace:*",
"@types/react": "^18",
"nodemon": "^3.0.2",
"typescript": "^5.3.3"
}
}