-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.93 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
{
"name": "@validide/u-front-ends",
"version": "0.0.1",
"type": "module",
"description": "Micro Front Ends",
"main": "dist/bundle/index.umd.cjs",
"module": "dist/bundle/index.js",
"types": "dist/js/index.d.ts",
"exports": {
".": {
"types": "./dist/js/index.d.ts",
"import": "./dist/bundle/index.js",
"require": "./dist/bundle/index.cjs"
}
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/jsdom": "28.0.3",
"@types/node": "25.9.3",
"@vitest/coverage-v8": "4.1.8",
"glob": "13.0.6",
"jsdom": "29.1.1",
"typedoc": "0.28.20",
"typescript": "6.0.3",
"vite": "8.0.16",
"vitepress": "1.6.4",
"vitest": "4.1.8"
},
"scripts": {
"clean": "node -e \"const { rmSync } = require('fs'); rmSync('./dist', { recursive: true, force: true }); rmSync('./docs/dist', { recursive: true, force: true });\"",
"dev": "vite --open /docs/public/demo/index.html",
"prebuild": "npm run clean",
"build": "tsc && vite build",
"test": "vitest run --coverage",
"docs:dev": "npm run build && node -e \"require('fs').cpSync('dist/bundle', 'docs/public/demo/lib/bundle', {recursive: true, force: true})\" && typedoc && vitepress dev docs",
"docs:build": "npm run build && node -e \"require('fs').cpSync('dist/bundle', 'docs/public/demo/lib/bundle', {recursive: true, force: true})\" && typedoc && vitepress build docs",
"docs:preview": "vitepress preview docs",
"lint": "biome check --write ./",
"check": "tsc -p tsconfig.dev.json --noEmit && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/validide/u-front-ends.git"
},
"keywords": [
"micro",
"front",
"end"
],
"author": "Valentin Dide",
"license": "MIT",
"bugs": {
"url": "https://github.com/validide/u-front-ends/issues"
},
"homepage": "https://github.com/validide/u-front-ends#readme",
"files": [
"dist",
"src"
]
}