-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@reactunity/material",
"version": "0.19.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 <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ReactUnity/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": {
"prebuild": "yarn clean",
"build": "tsc -d && yarn copy-files",
"copy-files": "copyfiles -u 1 \"src/**/*.scss\" dist/src",
"prepare": "yarn clean && yarn build",
"watch": "concurrently --kill-others \"yarn watch:tsc\" \"yarn watch:files\"",
"watch:tsc": "tsc -d --watch --sourceMap",
"watch:files": "onchange -i \"src/**/*.scss\" -- yarn copy-files",
"clean": "rimraf dist",
"lint": "react-unity-scripts lint",
"local": "yalc publish --push",
"pack": "yarn pack"
},
"dependencies": {
"clsx": "^2.1.1",
"memoize-one": "^6.0.0"
},
"devDependencies": {
"@reactunity/renderer": "^0.19.1",
"@reactunity/scripts": "^0.19.2",
"concurrently": "^9.1.0",
"copyfiles": "^2.4.1",
"onchange": "^7.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@reactunity/renderer": "*",
"react": "^18.0.0"
}
}