-
-
Notifications
You must be signed in to change notification settings - Fork 294
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.45 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@react-md/code",
"private": true,
"version": "0.0.24",
"description": "The core components and functionality for react-md.",
"type": "module",
"sass": "./dist/_code.scss",
"exports": {
".": {
"sass": "./dist/_code.scss"
},
"./*": "./dist/*.js",
"./package.json": "./package.json"
},
"scripts": {
"dev": "pnpm run watch",
"watch": "npm-run-all --parallel build-esm-watch build-scss-watch build-types-watch",
"build": "npm-run-all build-esm build-types build-scss",
"build-esm": "swc -d ./dist --strip-leading-paths src",
"build-esm-watch": "pnpm run build-esm --watch",
"build-types": "tsgo -P tsconfig.types.json",
"build-types-watch": "pnpm run build-types --watch",
"build-scss": "cp -f src/_code.scss dist/_code.scss",
"build-scss-watch": "chokidar \"src/*.scss\" -c \"pnpm run build-scss\"",
"clean-dist": "rm -rf dist",
"clean": "rm -rf .turbo dist node_modules",
"typecheck": "tsgo --noEmit",
"lint-scripts": "eslint \"src/**/*.{ts,tsx,js,jsx,cjs,mjs}\"",
"lint-styles": "stylelint \"src/**/*.{css,scss}\"",
"lint": "npm-run-all lint-scripts lint-styles",
"lint-fix": "npm-run-all \"lint-scripts --fix\" \"lint-styles --fix\"",
"check-format": "prettier --check .",
"format": "prettier --write .",
"test-run": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
"test": "pnpm test-run --watch",
"test-run-coverage": "pnpm test-run --coverage",
"test-run-snapshot": "pnpm test-run -u"
},
"engines": {
"pnpm": ">=9",
"node": ">=20"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/mlaursen/react-md.git"
},
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlaursen/react-md/issues"
},
"homepage": "https://react-md.dev",
"dependencies": {
"@react-md/core": "workspace:*",
"@react-md/material-icons": "workspace:*",
"client-only": "^0.0.1",
"cnbuilder": "^3.1.0",
"prettier": "^3.8.3",
"prismjs": "^1.30.0",
"server-only": "^0.0.1",
"sucrase": "^3.35.1"
},
"devDependencies": {
"@jest/globals": "^30.4.1",
"@jest/types": "^30.4.1",
"@react-md/eslint-config": "workspace:*",
"@react-md/stylelint-config": "workspace:*",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.33",
"@swc/jest": "^0.2.39",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^24.12.2",
"@types/prismjs": "^1.26.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "beta",
"chokidar-cli": "^3.0.0",
"eslint": "^9.39.4",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-watch-typeahead": "^3.0.1",
"npm-run-all2": "^8.0.2",
"postcss": "^8.5.16",
"postcss-selector-parser": "^7.1.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"sass": "^1.99.0",
"stylelint": "^17.11.1",
"typescript": "npm:@typescript/typescript6@^6.0.0"
},
"peerDependencies": {
"react": ">= 19",
"react-dom": ">= 19"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
}
},
"volta": {
"node": "24.15.0",
"pnpm": "10.33.2"
}
}