-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.03 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@argent/x-sessions",
"version": "6.7.10",
"private": false,
"description": "Manage sessions for Argent X wallets",
"keywords": [
"starknet",
"starkware",
"sessions",
"session",
"argent",
"wallet",
"dapp"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/sessions.js",
"require": "./dist/sessions.umd.cjs"
}
},
"main": "./dist/sessions.umd.cjs",
"module": "./dist/sessions.js",
"types": "./dist/sessions.d.ts",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/argentlabs/x-sessions.git"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage",
"dev": "vite build --watch",
"setup": "vite build",
"build": "vite build",
"prepare": "husky"
},
"bugs": {
"url": "https://github.com/argentlabs/x-sessions/issues"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@semantic-release/git": "^10.0.1",
"@starknet-io/types-js": "^0.7.7",
"@types/minimalistic-assert": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@vitest/browser": "1.3.1",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "1.3.1",
"@vitest/ui": "1.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"get-starknet": "4.0.0-next.2",
"happy-dom": "^13.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"msw": "^2.3.0",
"prettier": "^3.2.5",
"semantic-release": "^23.0.6",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vitest": "1.3.1"
},
"dependencies": {
"minimalistic-assert": "^1.0.1"
},
"peerDependencies": {
"starknet": "6.11.0"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "eslint --cache --fix"
}
}