-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 877 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 877 Bytes
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
{
"name": "taro-css-to-react-native",
"description": "Convert CSS text to a React Native stylesheet object",
"version": "4.1.6",
"author": "O2Team",
"license": "MIT",
"main": "dist/index.js",
"types": "index.d.ts",
"files": [
"dist",
"src",
"index.d.ts"
],
"scripts": {
"prod": "pnpm run build",
"prebuild": "pnpm run clean",
"clean": "rimraf ./dist",
"build": "babel src --ignore *.spec.js --out-dir ./dist",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro.git"
},
"keywords": [
"React",
"ReactNative",
"styles",
"CSS"
],
"engines": {
"node": ">= 18"
},
"dependencies": {
"camelize": "^1.0.1",
"css": "^3.0.0",
"css-color-keywords": "^1.0.0",
"css-mediaquery": "^0.1.2",
"postcss-value-parser": "^4.2.0"
}
}