-
Notifications
You must be signed in to change notification settings - Fork 318
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "@stylexjs/rollup-plugin",
"version": "0.10.1",
"description": "Rollup plugin for StyleX",
"main": "./lib/index.js",
"module": "./lib/es/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
"import": "./lib/es/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/stylex.git"
},
"license": "MIT",
"scripts": {
"prebuild": "gen-types -i src/ -o lib/",
"build:cjs": "cross-env BABEL_ENV=cjs babel src/ --out-dir lib/ --copy-files",
"build:esm": "cross-env BABEL_ENV=esm babel src/ --out-dir lib/es --out-file-extension .mjs",
"build": "npm run build:cjs && npm run build:esm",
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"__builds__",
"/__fixtures__/"
],
"testEnvironment": "node"
},
"dependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-syntax-flow": "^7.25.7",
"@babel/plugin-syntax-jsx": "^7.25.7",
"@babel/plugin-syntax-typescript": "^7.25.7",
"@stylexjs/babel-plugin": "0.10.1",
"lightningcss": "^1.27.0"
},
"files": [
"flow_modules/*",
"lib/*"
]
}