-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 KB
/
package.json
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": "@swan-io/css",
"version": "0.1.2",
"license": "MIT",
"description": "A lightweight and performant atomic CSS-in-JS library",
"author": "Mathieu Acthernoene <[email protected]>",
"homepage": "https://github.com/swan-io/css",
"repository": {
"type": "git",
"url": "git+https://github.com/swan-io/css.git"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.12.0",
"pnpm": "^9.15.3"
},
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"css",
"css-in-js",
"react",
"style",
"typescript"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"format": "prettier '**/*' --ignore-unknown --write",
"clean": "rm -rf dist",
"test:ci": "playwright install --with-deps --only-shell chromium && CI=true vitest --run",
"test": "vitest --run",
"test:webkit": "BROWSER=webkit vitest --run",
"test:firefox": "BROWSER=firefox vitest --run",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit",
"build": "tsup && tsc -p tsconfig.build.json --emitDeclarationOnly",
"prepack": "pnpm typecheck && pnpm test && pnpm build"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"dependencies": {
"@emotion/hash": "^0.9.2",
"@react-native/normalize-colors": "^0.76.5",
"csstype": "^3.1.3",
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@vitest/browser": "^2.1.8",
"playwright": "^1.49.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"vitest-browser-react": "^0.0.4"
}
}