-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.03 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
{
"name": "@equinor/eds-mobile-components",
"description": "A React Native component library implementing the Equinor Design System.",
"version": "0.3.0",
"author": {
"name": "Equinor Design System Mobile"
},
"bugs": "https://github.com/equinor/design-system-mobile/issues",
"dependencies": {
"@equinor/eds-tokens": "2.3.0-beta.3",
"@floating-ui/react-native": "^0.10.7",
"react-error-boundary": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.17",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.25.0",
"jest": "^29.7.0",
"jest-expo": "^55.0.19",
"tsup": "^8.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.39.0"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"dist",
"docs"
],
"homepage": "https://github.com/equinor/design-system-mobile/",
"keywords": [
"react native",
"typescript",
"ui"
],
"license": "MIT",
"main": "./dist/index.js",
"peerDependencies": {
"expo-font": "^55.0.8",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-native": "^0.83.6",
"react-native-gesture-handler": "^2.30.0",
"react-native-reanimated": "^4.2.1",
"react-native-svg": "^15.15.3",
"react-native-worklets": "^0.7.4"
},
"scripts": {
"build": "tsup-node && echo '\n ⚙️ Generating typescript declarations..' && tsc --project tsconfig.json --emitDeclarationOnly --declaration",
"check-types": "tsc --noEmit",
"clean": "rm -rf node_modules dist .turbo",
"dev": "tsup-node --watch --clean=false",
"lint": "eslint .",
"test": "jest --passWithNoTests"
},
"type": "module",
"types": "./dist/index.d.ts"
}