-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
{
"name": "@pigment-css/vite-plugin",
"version": "0.0.30",
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"author": "MUI Team",
"description": "Vite integration for Pigment CSS.",
"repository": {
"type": "git",
"url": "git+https://github.com/mui/pigment-css.git",
"directory": "packages/pigment-css-vite-plugin"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mui/pigment-css/issues"
},
"homepage": "https://github.com/mui/pigment-css/tree/master/README.md",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mui-org"
},
"scripts": {
"clean": "rimraf build",
"watch": "tsup --watch",
"copy-license": "node ../../scripts/pigment-license.mjs",
"build": "tsup",
"typescript": "tsc --noEmit -p ."
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@pigment-css/react": "workspace:^",
"@wyw-in-js/shared": "^0.5.5",
"@wyw-in-js/transform": "^0.5.5",
"babel-plugin-define-var": "^0.1.0"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"vite": "^6.0.5"
},
"peerDependencies": {
"vite": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"build",
"package.json",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
}
}