-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "@tumaet/prompt-shared-state",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/prompt-edu/prompt-shared-state.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"license": "MIT",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./*": "./dist/*"
},
"files": [
"dist"
],
"scripts": {
"build:esm": "tsc --project tsconfig.json",
"build": "yarn build:esm",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\""
},
"packageManager": "yarn@4.14.1",
"dependencies": {
"axios": "^1.18.0",
"i18n-iso-countries": "^7.14.0",
"js-sha256": "^0.11.1",
"typescript": "^5.9.3",
"zustand": "^5.0.14"
},
"peerDependencies": {
"@tanstack/react-query": "^5.101.0",
"react": "^19.2.7",
"react-router-dom": "^7.18.0"
},
"devDependencies": {
"@tanstack/react-query": "^5.101.0",
"@types/react": "^19.2.17",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"eslint": "^10.5.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"react": "^19.2.7",
"react-router-dom": "^7.18.0"
}
}