-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.19 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
{
"name": "faz-bootstrap",
"version": "0.2.1",
"description": "HTML Web Components based on Faz and Bootstrap.",
"main": "src/index.ts",
"module": "dist/js/index.js",
"mainFields": [
"module",
"main"
],
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/candango/faz-bootstrap.git"
},
"bugs": {
"url": "https://github.com/candango/faz-bootstrap/issues"
},
"homepage": "https://github.com/candango/faz-bootstrap#readme",
"author": "Flavio Garcia <piraz@candango.org>",
"license": "MIT",
"keywords": [
"webcomponent",
"faz",
"bootstrap",
"toolkit"
],
"dependencies": {
"@popperjs/core": "2.11.8",
"bootstrap": "5.3.8",
"bootstrap-icons": "1.13.1",
"bootswatch": "5.3.8",
"lodash": "4.17.21"
},
"peerDependencies": {
"faz": "0.6.1",
"solid-js": "1.9.13"
},
"devDependencies": {
"@codemirror/lang-html": "6.4.11",
"@codemirror/language": "6.12.1",
"@codemirror/state": "6.5.3",
"@codemirror/view": "6.39.8",
"@types/lodash": "4.17.16",
"@types/node": "24.7.2",
"esbuild": "0.27.2",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-solid": "0.6.0",
"faz": "0.6.1",
"jsdom": "27.0.0",
"msw": "^2.14.6",
"sass": "1.101.0",
"solid-js": "1.9.13",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vite": "8.0.16",
"vite-plugin-solid": "2.11.12",
"vitest": "4.1.9"
},
"scripts": {
"watch": "pnpm run watch:clean && node watch.mjs",
"watch:clean": "rm -rf showcase/dist",
"esbuild": "node build.mjs",
"ts:build": "pnpm run ts:clean && pnpm run ts:declaration",
"ts:declaration": "tsc -p tsconfig.types.json -d --declarationDir types --emitDeclarationOnly && rm -rf tsconfig.types.tsbuildinfo",
"ts:clean": "rm -rf tsconfig.tsbuildinfo types/*",
"build": "pnpm run build:clean && pnpm run sass && pnpm run esbuild && pnpm run ts:build && cp -r types dist",
"build:prod": "pnpm run build:clean && webpack --config webpack.config.prod.js && pnpm run sass",
"build:clean": "rm -rf dist",
"build:vendors": "rm -rf dist",
"sass": "pnpm run sass:faz && pnpm run sass:showcase",
"sass:faz": "sass stylesheets/faz.scss dist/css/faz.css --source-map",
"sass:showcase": "sass stylesheets/showcase.scss dist/css/showcase.css --source-map",
"sass:calendar": "sass stylesheets/calendar.scss dist/css/calendar.css --source-map",
"sass:dev": "pnpm run sass:dev:faz && pnpm run sass:dev:showcase && pnpm run sass:dev:calendar",
"sass:dev:faz": "sass stylesheets/faz.scss stylesheets/faz.css --source-map",
"sass:dev:showcase": "sass stylesheets/showcase.scss stylesheets/showcase.css --source-map",
"sass:dev:calendar": "sass stylesheets/calendar.scss stylesheets/calendar.css --source-map",
"test": "vitest run"
},
"packageManager": "pnpm@10.25.0"
}