@albi_scando/as-design-system-lib 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# `as-design-system-lib`
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
A TypeScript library of reusable Web Components designed to build consistent and maintainable user interfaces.
|
|
6
|
+
All components are strongly typed, ensuring type-safety and better developer experience in modern TypeScript projects.
|
|
7
|
+
|
|
8
|
+
## Table of Contents
|
|
9
|
+
|
|
10
|
+
- [License](documentation/pages/LICENSE.md)
|
|
11
|
+
- [Contributing](documentation/pages/CONTRIBUTING.md)
|
|
12
|
+
- [Changelog](CHANGELOG.md)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,i){typeof exports=="object"&&typeof module<"u"?i(exports):typeof define=="function"&&define.amd?define(["exports"],i):(e=typeof globalThis<"u"?globalThis:e||self,i(e["as-design-system-lib"]={}))})(this,(function(e){"use strict";const i="as-design-system-lib";e.APPLICATION_NAME=i,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})}));
|
package/package.json
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@albi_scando/as-design-system-lib",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A library of reusable, strongly typed Web Components built with TypeScript, designed for creating consistent and maintainable user interfaces.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/albertoscandolara/as-design-system-lib"
|
|
12
|
+
},
|
|
13
|
+
"author": "Alberto Scandolara",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/albertoscandolara/as-design-system-lib/issues"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://github.com/albertoscandolara/as-design-system-lib#readme",
|
|
19
|
+
"main": "./dist/as-design-system-lib.umd.js",
|
|
20
|
+
"module": "./dist/as-design-system-lib.es.js",
|
|
21
|
+
"typings": "./dist/types/main.d.ts",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsc && vite build",
|
|
24
|
+
"dev": "vite serve ./src/playground",
|
|
25
|
+
"docs:build": "typedoc",
|
|
26
|
+
"docs:serve": "npx http-server docs -o",
|
|
27
|
+
"format": "prettier --write .",
|
|
28
|
+
"prepare": "husky",
|
|
29
|
+
"preview": "vite preview",
|
|
30
|
+
"prettier": "prettier . --check",
|
|
31
|
+
"prettier:fix": "prettier . --write",
|
|
32
|
+
"lint": "eslint .",
|
|
33
|
+
"lint:fix": "eslint . --fix",
|
|
34
|
+
"formatter": "npm run prettier && npm run lint",
|
|
35
|
+
"formatter:fix": "npm run prettier:fix && npm run lint:fix",
|
|
36
|
+
"storybook": "storybook dev -p 6006",
|
|
37
|
+
"build-storybook": "storybook build"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@commitlint/cli": "^19.8.1",
|
|
41
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
42
|
+
"@eslint/js": "^9.14.0",
|
|
43
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
44
|
+
"@semantic-release/git": "^10.0.1",
|
|
45
|
+
"@semantic-release/github": "^11.0.4",
|
|
46
|
+
"@semantic-release/npm": "^12.0.2",
|
|
47
|
+
"@storybook/addon-docs": "^9.1.2",
|
|
48
|
+
"@storybook/html-vite": "^9.1.2",
|
|
49
|
+
"@types/node": "^22.8.6",
|
|
50
|
+
"@types/numeric": "^1.2.6",
|
|
51
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
52
|
+
"eslint": "^9.14.0",
|
|
53
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
54
|
+
"eslint-plugin-storybook": "^9.1.2",
|
|
55
|
+
"globals": "^15.11.0",
|
|
56
|
+
"http-server": "^14.1.1",
|
|
57
|
+
"husky": "^9.1.7",
|
|
58
|
+
"lint-staged": "^15.5.2",
|
|
59
|
+
"prettier": "^3.3.3",
|
|
60
|
+
"sass": "^1.81.0",
|
|
61
|
+
"semantic-release": "^24.2.7",
|
|
62
|
+
"storybook": "^9.1.2",
|
|
63
|
+
"typedoc": "^0.28.10",
|
|
64
|
+
"typescript": "^5.8.2",
|
|
65
|
+
"typescript-eslint": "^8.12.2",
|
|
66
|
+
"validate-branch-name": "^1.3.2",
|
|
67
|
+
"vite": "^7.1.2",
|
|
68
|
+
"vite-plugin-dts": "^4.5.4",
|
|
69
|
+
"vite-plugin-static-copy": "^3.1.1",
|
|
70
|
+
"vitest": "^3.2.4"
|
|
71
|
+
},
|
|
72
|
+
"packageManager": "pnpm@9.12.3",
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=22.11.0"
|
|
75
|
+
},
|
|
76
|
+
"lint-staged": {
|
|
77
|
+
"*.ts": "prettier --write",
|
|
78
|
+
"*.{js,scss,css,md}": [
|
|
79
|
+
"prettier --write",
|
|
80
|
+
"eslint --fix"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
}
|