-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "css-to-react-native",
"version": "4.0.0",
"description": "Convert CSS text to a React Native stylesheet object",
"main": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"clean": "node -e \"fs.rmSync('./index.js', { force: true }); fs.rmSync('./index.d.ts', { force: true })\"",
"format": "biome format",
"lint": "biome lint",
"precommit": "lint-staged",
"prebuild": "pnpm clean && pnpm tsc",
"prepack": "pnpm build",
"test": "pnpm lint && pnpm tsc && pnpm format && pnpm unit",
"tsc": "tsc",
"unit": "vitest",
"unit:watch": "vitest --watch"
},
"files": [
"index.js",
"index.d.ts",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/styled-components/css-to-react-native.git"
},
"keywords": [
"styled-components",
"React",
"ReactNative",
"styles",
"CSS"
],
"author": "Jacob Parker",
"license": "MIT",
"bugs": {
"url": "https://github.com/styled-components/css-to-react-native/issues"
},
"homepage": "https://github.com/styled-components/css-to-react-native#readme",
"devDependencies": {
"@types/node": "^24.7.2",
"@rollup/plugin-typescript": "^12.1.2",
"@biomejs/biome": "2.4.9",
"lint-staged": "^6.1.0",
"rollup": "^4.40.2",
"rollup-plugin-dts": "^6.2.1",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"vitest": "^4.0.1"
},
"dependencies": {
"camelize": "^1.0.0",
"css-color-keywords": "^1.0.0",
"postcss-value-parser": "^4.0.2"
},
"lint-staged": {
"*.{js,ts}": [
"biome check",
"git add"
]
},
"packageManager": "pnpm@10.32.1"
}