-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.99 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.99 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
{
"name": "@nkzw/stack",
"version": "2.3.2",
"description": "Zero-dependency, type-safe Stack component for streamlining flexbox usage in React & React Native.",
"homepage": "https://github.com/nkzw-tech/stack",
"repository": {
"type": "git",
"url": "https://github.com/nkzw-tech/stack"
},
"license": "MIT",
"author": {
"name": "Christoph Nakazawa",
"email": "christoph.pojer@gmail.com"
},
"type": "module",
"exports": {
".": {
"react-native": "./lib/index.native.mjs",
"default": "./lib/index.mjs"
}
},
"main": "./lib/index.mjs",
"types": "./lib/index.d.mts",
"files": [
"lib"
],
"scripts": {
"build": "mkdir -p lib && tsdown src/index.tsx && tsdown --no-clean src/index.native.tsx",
"format": "prettier --experimental-cli --write .",
"lint": "eslint --cache .",
"lint:format": "prettier --experimental-cli --cache --check .",
"test": "npm-run-all --parallel tsc:check lint lint:format vitest:run",
"tsc:check": "tsc",
"vitest:run": "vitest run"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@nkzw/eslint-config": "^3.2.1",
"@prettier/plugin-oxc": "^0.0.4",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.39.1",
"happy-dom": "^20.0.10",
"nativewind": "^4.2.1",
"npm-run-all2": "^8.0.4",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-native": "^0.82.1",
"tsdown": "^0.16.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"nativewind": "^4.1.23",
"react": ">=17.0.0",
"react-native": ">=0.67.0"
},
"peerDependenciesMeta": {
"nativewind": {
"optional": true
},
"react-native": {
"optional": true
}
}
}