-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.02 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
{
"name": "@reactunity/material",
"version": "0.23.0",
"description": "Material Design components and utilities for React Unity",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"sideEffects": ["./src/styles", "./src/styles/**/*.*", "./dist/src/styles", "./dist/src/styles/**/*.*", "**/*.css", "**/*.scss"],
"author": "Gokhan Kurt <krtgkn@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/ReactUnity/core.git",
"directory": "packages/material"
},
"keywords": ["react", "material", "material-design", "material-ui", "unity", "unity3d"],
"license": "MIT",
"files": ["dist"],
"exports": {
".": "./dist/index.js",
"./styles": {
"style": "./dist/src/styles/index.scss",
"default": "./dist/src/styles/index.js"
},
"./*": "./dist/src/*/index.js"
},
"scripts": {
"build": "tsdown && pnpm run copy-files",
"typecheck": "tsc",
"copy-files": "copyfiles -u 1 \"src/**/*.scss\" dist/src",
"watch": "concurrently --kill-others \"pnpm run watch:build\" \"pnpm run watch:files\"",
"watch:build": "tsdown --watch",
"watch:files": "onchange -i \"src/**/*.scss\" -- pnpm run copy-files",
"clean": "rimraf dist",
"lint": "react-unity-scripts lint",
"local": "yalc publish --push",
"pack": "npm run pack",
"prepack": "pnpm run build"
},
"dependencies": {
"clsx": "^2.1.1",
"memoize-one": "^6.0.0"
},
"devDependencies": {
"@reactunity/renderer": "workspace:^",
"@reactunity/scripts": "workspace:^",
"@types/react": "^19.2.17",
"concurrently": "^10.0.4",
"copyfiles": "^2.4.1",
"onchange": "^7.1.0",
"rimraf": "^6.1.3",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
},
"peerDependencies": {
"@reactunity/renderer": "*",
"react": "^19.1.0"
},
"bugs": {
"url": "https://github.com/ReactUnity/core/issues"
},
"homepage": "https://github.com/ReactUnity/core/tree/main/packages/material#readme",
"publishConfig": {
"access": "public"
}
}