-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 980 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 980 Bytes
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
{
"name": "@maskingtech/designsystem",
"private": false,
"version": "0.0.8",
"type": "module",
"repository": {
"url": "https://github.com/MaskingTechnology/designsystem"
},
"scripts": {
"build": "vite build",
"clean": "rimraf dist",
"lint": "eslint",
"prepublishOnly": "npm run build",
"version": "npm version $VERSION --no-git-tag-version"
},
"exports": {
".": "./dist/mtds.js",
"./style.css": "./dist/mtds.css"
},
"files": [
"README.md",
"dist"
],
"peerDependencies": {
"react": "^19.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^19.2.7",
"@types/node": "^25.0.3",
"@vitejs/plugin-react": "6.0.1",
"eslint-plugin-react": "7.37.5",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"vite": "^8.0.3",
"vite-plugin-dts": "^4.5.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.54.0"
}
}