-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.74 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
{
"name": "@northern.tech/common",
"version": "0.6.0",
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NorthernTechHQ/nt-gui.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./auditlogs/*": {
"types": "./dist/auditlogs/*.d.ts",
"import": "./dist/auditlogs/*.js",
"require": "./dist/auditlogs/*.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch --onSuccess 'yalc publish --no-script --push'",
"lint": "eslint --quiet .",
"format:check": "prettier --check \"src/**/*.{js,ts,jsx,tsx,less}\"",
"test": "vitest",
"test-ci": "vitest run"
},
"type": "module",
"devDependencies": {
"@mui/x-date-pickers": "^9.7.0",
"@northern.tech/eslint-config": "*",
"@northern.tech/testing": "*",
"@northern.tech/typescript-config": "*",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.x",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "9.39.1",
"jsdom": "29.1.1",
"msw": "^2.14.6",
"tsdown": "^0.22.2",
"typescript": "6.0.3",
"vitest": "^4.1.9"
},
"peerDependencies": {
"@mui/icons-material": "^9.x",
"@mui/material": "^9.2.0",
"@mui/x-tree-view": "^9.x",
"@northern.tech/common-ui": "*",
"@northern.tech/store": "*",
"@northern.tech/themes": "*",
"@northern.tech/utils": "*",
"dayjs": "^1.x",
"msgpack5": "^6.x",
"react": "^19.x",
"react-dom": "^19.x",
"react-redux": "^9.x",
"react-router": "^8.x",
"tss-react": "^4.x",
"universal-cookie": "^8.x"
}
}