-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 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
{
"name": "react-stone-mason",
"version": "2.0.2",
"author": {
"name": "Greg Archer",
"email": "greg.taff@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nihlton/mason"
},
"homepage": "https://github.com/nihlton/mason",
"files": [
"dist"
],
"main": "./dist/react-stone-mason.umd.js",
"module": "./dist/react-stone-mason.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-stone-mason.mjs",
"require": "./dist/react-stone-mason.umd.js"
}
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"dependencies": {},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sass": "^1.95.1",
"source-map-loader": "^0.2.4",
"ts-loader": "^7.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^6.4.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2"
}
}