-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.09 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
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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@vicinage/unplugin",
"version": "0.18.42",
"description": "Universal bundler plugin for Vicinage",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chbybnwr/vicinage-unplugin.git"
},
"homepage": "https://github.com/chbybnwr/vicinage-unplugin",
"bugs": {
"url": "https://github.com/chbybnwr/vicinage-unplugin/issues"
},
"funding": "https://github.com/sponsors/chbybnwr",
"keywords": [
"bundler",
"css",
"inline",
"jsx",
"plugin",
"stylex",
"unplugin",
"vite",
"vicinage"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"import": "./dist/adapters/*.js",
"require": "./dist/adapters/*.cjs"
},
"./package.json": "./package.json"
},
"imports": {
"#/*": "./dist/*"
},
"scripts": {
"prepack": "npm run build && npm pkg delete scripts packageManager devDependencies",
"check": "npm run typecheck && npm run test -- --coverage && npm run lint && npm run format -- --check && npm run spellcheck",
"build": "tsdown",
"compile": "tsc --project tsconfig.build.json",
"typecheck": "tsc --build",
"test": "vitest run",
"lint": "eslint ./",
"format": "prettier ./",
"spellcheck": "cspell ./"
},
"engines": {
"runtime": {
"name": "node",
"version": "^24 || ^25 || ^26",
"onFail": "error"
}
},
"packageManager": "pnpm@11.5.1",
"dependencies": {
"@babel/helper-plugin-utils": "^7.29.7",
"@babel/parser": "^7.29.7",
"@babel/traverse": "^7.29.7",
"@babel/types": "^7.29.7",
"magic-string": "^0.30.21",
"picomatch": "^4.0.4",
"unplugin": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@chbybnwr/tsconfig": "github:chbybnwr/tsconfig",
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.0.0",
"@eslint/markdown": "^8.0.2",
"@farmfe/core": "^1.7.11",
"@nuxt/kit": "^4.4.8",
"@nuxt/schema": "^4.4.8",
"@stylexjs/stylex": "^0.18.3",
"@stylistic/eslint-plugin": "^5.10.0",
"@txe/eslint-plugin-x": "~0.2.1",
"@types/babel__core": "^7.20.5",
"@types/babel__helper-plugin-utils": "^7.10.3",
"@types/babel__traverse": "^7.28.0",
"@types/node": "^25.9.3",
"@types/picomatch": "^4.0.3",
"@types/react": "^19.2.17",
"@typescript-eslint/parser": "^8.61.0",
"@typescript/native-preview": "7.0.0-dev.20260614.1",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/eslint-plugin": "^1.6.20",
"cspell": "^10.0.1",
"esbuild": "^0.28.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-n": "^18.1.0",
"eslint-plugin-unicorn": "^65.0.1",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"react": "^19.2.7",
"solarwindcss": "^0.36.10",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vicinage": "^0.7.22",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"webpack": "^5.107.2"
}
}