-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
100 lines (100 loc) · 2.26 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
95
96
97
98
99
100
{
"name": "vite-plugin-stylex-dev",
"version": "0.5.0",
"description": "an unofficial stylex vite plugin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"packageManager": "[email protected]",
"workspaces": [
"examples/*",
"e2e/**/*",
"internal/*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./client": {
"types": "./client.d.ts"
},
"./*": "./*"
},
"files": [
"dist",
"README.md",
"LICENSE",
"client.d.ts"
],
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"test": "c8 -r=lcov ava __tests__/*.spec.ts",
"e2e": "ava e2e/e2e.spec.ts"
},
"keywords": [
"stylex",
"experimental",
"css-in-js",
"vite-plugin"
],
"author": "kanno",
"license": "MIT",
"homepage": "https://github.com/nonzzz/vite-plugin-stylex",
"bugs": {
"url": "https://github.com/nonzzz/vite-plugin-stylex/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nonzzz/vite-plugin-stylex.git"
},
"devDependencies": {
"@stylexjs/stylex": "^0.5.1",
"@types/babel__core": "^7.20.5",
"@types/connect": "^3.4.38",
"@types/node": "^20.10.4",
"@typescript-eslint/parser": "^6.14.0",
"@typescript-eslint/utils": "^6.14.0",
"ava": "^5.3.1",
"c8": "^8.0.1",
"eslint": "^8.55.0",
"eslint-config-kagura": "^2.1.1",
"eslint-plugin-vue": "^9.19.2",
"get-tsconfig": "^4.7.2",
"playwright": "~1.32.3",
"postcss-pxtorem": "^6.0.0",
"tsup": "^8.0.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vue-eslint-parser": "^9.3.2"
},
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-syntax-flow": "^7.23.3",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/plugin-syntax-typescript": "^7.23.3",
"@stylexjs/babel-plugin": "^0.5.1",
"es-module-lexer": "^1.4.1",
"magic-string": "^0.30.5"
},
"resolutions": {
"sharp": "0.32.6",
"vite": "^5.0.11",
"@stylexjs/stylex": "^0.5.1"
},
"ava": {
"files": [
"__tests__/*.spec.ts",
"e2e/*.spec.ts"
],
"extensions": [
"ts"
],
"require": [
"tsx/cjs"
]
}
}