-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.06 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.06 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "starkzap",
"version": "1.0.0",
"description": "Helper sdk for easy wallet integration",
"workspaces": [
"packages/*",
"examples/*"
],
"homepage": "https://github.com/keep-starknet-strange/x#readme",
"bugs": {
"url": "https://github.com/keep-starknet-strange/x/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keep-starknet-strange/x.git"
},
"license": "MIT",
"author": "0xLucqs",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./cartridge": {
"types": "./dist/src/cartridge.d.ts",
"import": "./dist/src/cartridge.js"
}
},
"peerDependencies": {
"@cartridge/controller": "^0.13.9"
},
"peerDependenciesMeta": {
"@cartridge/controller": {
"optional": true
},
"react-native-get-random-values": {
"optional": true
},
"fast-text-encoding": {
"optional": true
},
"@ethersproject/shims": {
"optional": true
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc; tsc-alias",
"build:all": "npm run build --workspace @starkzap/native",
"typecheck": "tsc --noEmit",
"typecheck:all": "npm run typecheck --workspace @starkzap/native",
"lint": "eslint .",
"fix": "eslint . --fix",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "vitest run --project unit",
"test:watch": "vitest --project unit",
"test:coverage": "vitest run --project unit --coverage",
"test:integration": "vitest run --project integration",
"test:integration:watch": "vitest --project integration",
"test:all": "vitest run",
"generate:tokens": "npx tsx scripts/generate-token-presets.ts --network mainnet",
"generate:tokens:sepolia": "npx tsx scripts/generate-token-presets.ts --network sepolia",
"generate:validators": "npx tsx scripts/generate-validator-presets.ts --network mainnet",
"generate:validators:sepolia": "npx tsx scripts/generate-validator-presets.ts --network sepolia",
"docs:api": "typedoc --options typedoc.json",
"docs:export": "npm run docs:api && node scripts/docs-export.mjs",
"docs:check": "npm run docs:api",
"example:server": "npm run start --workspace starkzap-example-server",
"prepare": "husky"
},
"devDependencies": {
"@cartridge/controller": "^0.13.9",
"@eslint/js": "^9.39.2",
"@vitest/coverage-v8": "^4.0.17",
"bestzip": "^2.2.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"prettier": "3.8.1",
"starknet-devnet": "^0.7.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"dependencies": {
"@avnu/avnu-sdk": "^4.1.0-rc.0",
"starknet": "^9.2.1"
}
}