-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.86 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.86 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
{
"name": "@dnd-mapp/shared-ui",
"version": "2.0.2",
"description": "Official Angular component library for the D&D Mapp platform.",
"author": "NoNamer777",
"license": "MIT",
"keywords": [
"angular",
"component-library",
"ui-kit"
],
"homepage": "https://github.com/dnd-mapp/shared-ui",
"repository": {
"type": "git",
"url": "git+https://github.com/dnd-mapp/shared-ui.git"
},
"bugs": {
"url": "https://github.com/dnd-mapp/shared-ui/issues"
},
"exports": {
"./fonts/*": "./assets/fonts/*",
"./images/*": "./assets/images/*",
"./styles/*": "./assets/styles/*",
"./styles/colors": {
"sass": "./assets/styles/colors/index.scss"
},
"./styles/fonts": {
"sass": "./assets/styles/fonts.scss"
},
"./styles/main": {
"sass": "./assets/styles/main.scss"
},
"./styles/theme-variables": {
"sass": "./assets/styles/theme-variables/index.scss"
}
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "~24.15"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "~24.15",
"onFail": "error"
},
"packageManager": [
{
"name": "pnpm",
"version": "10.33.0",
"onFail": "error"
}
]
},
"type": "module",
"scripts": {
"prepublishOnly": "node tools/prepublish-only.js",
"build": "pnpm exec ng build",
"build:development": "pnpm exec ng build -c development",
"storybook:start": "pnpm exec ng run shared-ui:storybook",
"storybook:build": "pnpm exec ng run shared-ui:build-storybook",
"format:check": "pnpm exec prettier -l .",
"format:write": "pnpm exec prettier -w .",
"lint": "pnpm lint:eslint && pnpm lint:stylelint",
"lint:eslint": "pnpm exec ng lint",
"lint:stylelint": "pnpm exec stylelint \"**/*.scss\""
},
"peerDependencies": {
"@angular/cdk": "~21.2.7",
"@angular/common": "~21.2.9",
"@angular/core": "~21.2.9",
"@angular/forms": "~21.2.9",
"@angular/router": "~21.2.9",
"rxjs": "~7.8.2"
},
"dependencies": {
"tslib": "~2.8.1"
},
"devDependencies": {
"@angular-eslint/builder": "~21.3.1",
"@angular/build": "~21.2.8",
"@angular/cli": "~21.2.8",
"@angular/compiler-cli": "~21.2.10",
"@angular/platform-browser-dynamic": "~21.2.10",
"@eslint/js": "~10.0.1",
"@storybook/addon-a11y": "~10.3.5",
"@storybook/addon-docs": "~10.3.5",
"@storybook/angular": "~10.3.5",
"@types/node": "~24.12.2",
"angular-eslint": "~21.3.1",
"eslint": "~10.2.1",
"eslint-config-prettier": "~10.1.8",
"eslint-plugin-storybook": "~10.3.5",
"ng-packagr": "~21.2.3",
"prettier": "~3.8.3",
"prettier-plugin-organize-imports": "~4.3.0",
"storybook": "~10.3.5",
"stylelint": "~17.9.0",
"stylelint-config-standard-scss": "~17.0.0",
"typescript": "~5.9.3",
"typescript-eslint": "~8.59.0"
}
}