@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 +3 -0
- package/lib/index.js +9 -0
- package/package.json +43 -0
package/README.md
ADDED
package/lib/index.js
ADDED
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
|
+
}
|