-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.68 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "root",
"version": "0.0.0",
"description": "lightweight and fast css-in-js solution",
"sideEffects": false,
"scripts": {
"prepare": "husky install",
"build": "node -r esbuild-register scripts/build.ts",
"build:doc": "cd docs && pnpm run build",
"build:plugin": "node -r esbuild-register scripts/buildPlugin.ts",
"test": "jest-easy",
"test:coverage": "jest-easy --coverage",
"update:deps": "pnpm update --latest --interactive",
"format": "prettier \"**/*.{js,ts,tsx,md}\" --write",
"lint": "eslint \"**/*.{ts,tsx}\" --fix",
"release": "node -r esbuild-register scripts/release.ts",
"type:react": "tsc -p specs/react/tsconfig.json",
"type:vue": "tsc -p specs/vue/tsconfig.json",
"type:solid": "tsc -p specs/solid/tsconfig.json",
"typescript": "tsc -p tsconfig.json && pnpm run type:solid && pnpm run type:react && pnpm run type:vue"
},
"keywords": [
"css-in-js",
"styils",
"styled",
"emotion",
"styled-components",
"javascript",
"react",
"preact"
],
"author": "zoy-l <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.24.7",
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@rollup/plugin-replace": "5.0.7",
"@rollup/plugin-terser": "^0.4.0",
"@solidjs/testing-library": "^0.8.0",
"@swc/core": "1.3.107",
"@swc/jest": "0.2.31",
"@testing-library/react": "14.3.1",
"@types/babel__core": "7.20.5",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.4.0",
"@types/node": "18.19.39",
"@types/prettier": "2.7.3",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/shelljs": "0.8.15",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"@vue/test-utils": "2.4.6",
"esbuild": "0.22.0",
"esbuild-register": "3.5.0",
"eslint": "8.57.0",
"eslint-config-iroot": "1.5.1",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"fs-extra": "11.2.0",
"husky": "8.0.3",
"jest": "29.4.3",
"jest-easy": "1.0.3",
"jest-environment-jsdom": "29.4.3",
"ora": "6.3.1",
"prettier": "2.8.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "4.4.1",
"rollup": "3.29.4",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-esbuild": "5.0.0",
"shelljs": "0.8.5",
"solid-js": "1.7.6",
"typescript": "5.5.2",
"vite": "4.5.3",
"vue": "3.4.29"
},
"engines": {
"node": ">=12",
"pnpm": ">=7"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"react-is/*",
"vite",
"vue"
]
}
}
}