-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "bun-plugin-stylex",
"version": "1.0.3",
"author": "nedjulius <hi@nedjulius.xyz>",
"repository": "nedjulius/bun-plugin-stylex",
"license": "MIT",
"module": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"bun",
"stylex",
"plugin"
],
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-syntax-flow": "^7.24.1",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/plugin-syntax-typescript": "^7.24.1",
"@stylexjs/babel-plugin": "^0.6.1",
"@stylexjs/shared": "^0.6.1",
"babel-plugin-syntax-hermes-parser": "^0.20.1"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"bun-plugin-dts": "^0.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"scripts": {
"test": "npm run build && bun test",
"test:watch": "bun test --watch",
"lint": "eslint \"**/*.{ts,js}\"",
"lint:fix": "npm run lint --fix",
"format": "prettier --write '**/*.{ts,json}' --config .prettierrc.json --ignore-path .gitignore",
"format:check": "prettier --check '**/*.{ts,json}' --config .prettierrc.json --ignore-path .gitignore",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "bun build.mjs"
},
"type": "module"
}