-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@fast-computing/fast-graphics",
"version": "0.0.4",
"main": "packages/tokens/dist/index.js",
"types": "packages/tokens/dist/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"exports": {
"./tokens": {
"types": "./packages/tokens/dist/index.d.ts",
"default": "./packages/tokens/dist/index.js"
},
"./mui-theme": {
"types": "./packages/mui-theme/dist/index.d.ts",
"default": "./packages/mui-theme/dist/index.js"
},
"./ui": {
"types": "./packages/ui/dist/index.d.ts",
"default": "./packages/ui/dist/index.js"
},
"./layouts": {
"types": "./packages/layouts/dist/index.d.ts",
"default": "./packages/layouts/dist/index.js"
}
},
"description": "FAST-Computing graphics release repo (@fast/* packages)",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:tokens && npm run build:mui-theme && npm run build:ui && npm run build:layouts && npm run build:assets",
"build:tokens": "cd packages/tokens && npm run build",
"build:mui-theme": "cd packages/mui-theme && npm run build",
"build:ui": "cd packages/ui && npm run build",
"build:layouts": "cd packages/layouts && npm run build",
"build:assets": "cd packages/assets && npm run build",
"clean": "rm -rf packages/*/dist",
"typecheck": "tsc -b",
"changeset": "changeset",
"version:packages": "changeset version",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAST-Computing/fast-css.git"
},
"keywords": [
"material-ui",
"mui",
"theme",
"design-tokens",
"design-system"
],
"author": "FAST-Computing",
"license": "MIT",
"files": [
"packages",
"README.md",
"tsconfig.base.json"
],
"peerDependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^7.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@changesets/changelog-github": "^0.5.0",
"@types/node": "^25.2.0",
"sass": "^1.70.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
}
}