-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.05 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
73
74
75
76
77
78
79
{
"name": "@native-html/css-processor",
"version": "2.0.0-alpha.0",
"description": "An inline CSS processor to translate CSS properties to React Native styles.",
"main": "lib/commonjs/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/",
"files": [
"lib",
"src"
],
"homepage": "https://github.com/native-html/render/tree/main/packages/css-processor#readme",
"bugs": {
"url": "https://github.com/native-html/render/issues"
},
"author": "Jules Sam. Randolph <jules.sam.randolph@gmail.com> (https://github.com/jsamr)",
"license": "MIT",
"keywords": [
"react-native",
"@native-html/render",
"CSS"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/native-html/render.git",
"directory": "packages/css-processor"
},
"scripts": {
"test": "yarn test:jest && yarn test:ts && yarn test:lint",
"test:jest": "jest src/",
"test:ts": "tsc --noEmit",
"test:lint": "eslint --ext ts,tsx src/",
"build": "bob build",
"prepack": "yarn run build"
},
"dependencies": {
"css-to-react-native": "^3.2.0",
"csstype": "^3.1.3"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.4",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@babel/runtime": "^7.28.4",
"@types/jest": "^29.5.14",
"@types/react": "~19.1.0",
"@types/react-native": "^0.73.0",
"babel-jest": "^29.7.0",
"change-case": "^5.4.4",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.6.2",
"react": "19.1.0",
"react-native-builder-bob": "^0.40.13",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@types/react": "*"
},
"publishConfig": {
"access": "public"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}