-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.27 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.27 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
{
"name": "@biochain/ecosystem-native",
"private": true,
"version": "0.1.0",
"description": "Native DOM components for Ecosystem desktop with Safari optimization",
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
},
"./react": {
"import": "./react/index.ts",
"types": "./react/index.ts"
},
"./config": {
"import": "./src/config.ts",
"types": "./src/config.ts"
}
},
"files": [
"src",
"react"
],
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck:run": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run --passWithNoTests",
"lint:run": "oxlint .",
"i18n:run": "echo 'No i18n'",
"theme:run": "echo 'No theme'"
},
"dependencies": {
"lit": "^3.2.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"oxlint": "^1.32.0",
"typescript": "^5.9.3",
"vitest": "^4.0.0"
},
"keywords": [
"biochain",
"ecosystem",
"web-components",
"lit",
"safari-optimization"
],
"license": "MIT"
}