@lls/common 24.8.0-7d80fa0c

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,3 @@
1
+ # lls-common
2
+
3
+ utils and constants shared between front and back
package/lib/index.js ADDED
@@ -0,0 +1,9 @@
1
+ // src/constants/grant.ts
2
+ var features = [{ role: "ok" }];
3
+
4
+ // src/utils/grant.ts
5
+ var hello = () => features;
6
+ export {
7
+ features,
8
+ hello
9
+ };
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@lls/common",
3
+ "version": "24.8.0-7d80fa0c",
4
+ "description": "utils and constants shared between front and backend",
5
+ "main": "./lib/index.js",
6
+ "module": "./lib/index.js",
7
+ "types": "./lib/builttypes/common/src/index.d.ts",
8
+ "exports": {
9
+ ".": "./lib/index.js"
10
+ },
11
+ "files": [
12
+ "lib/",
13
+ "package.json",
14
+ "README.md"
15
+ ],
16
+ "type": "module",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/lelivrescolaire/monorepo.git"
20
+ },
21
+ "keywords": [],
22
+ "author": "",
23
+ "license": "ISC",
24
+ "bugs": {
25
+ "url": "https://github.com/lelivrescolaire/monorepo/issues"
26
+ },
27
+ "homepage": "https://github.com/lelivrescolaire/monorepo/libs/common#readme",
28
+ "peerDependencies": {},
29
+ "devDependencies": {
30
+ "@biomejs/biome": "1.9.4",
31
+ "esbuild": "0.24.0",
32
+ "typescript": "5.6.3",
33
+ "@lls/vitescripts": "24.8.0-7d80fa0c"
34
+ },
35
+ "dependencies": {},
36
+ "scripts": {
37
+ "start": "echo no devserver",
38
+ "dts": "pnpm tsc --project tsconfig.production.json",
39
+ "build": "node build",
40
+ "test": "bun test",
41
+ "lint": "pnpm biome check --apply src __tests__"
42
+ }
43
+ }