-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.34 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
{
"name": "faz-bootstrap",
"version": "0.1.2",
"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-boostrap.git"
},
"bugs": {
"url": "https://github.com/candango/faz-boostrap/issues"
},
"homepage": "https://github.com/candango/faz-boostrap#readme",
"author": "Flavio Garcia <piraz@candango.org>",
"license": "MIT",
"keywords": [
"webcomponent",
"faz",
"bootstrap",
"toolkit"
],
"dependencies": {
"@popperjs/core": "2.11.8",
"axios": "1.13.2",
"bootstrap": "5.3.8",
"bootstrap-icons": "1.13.1",
"bootswatch": "5.3.8",
"faz": "0.4.3",
"less": "4.5.1",
"lodash": "4.17.21",
"solid-js": "1.9.10"
},
"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/nise": "1.4.5",
"@types/node": "24.7.2",
"esbuild": "0.27.2",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-solid": "0.6.0",
"nise": "6.1.1",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"scripts": {
"watch": "npm run watch:clean && node watch.mjs",
"watch:clean": "rm -rf showcase/dist",
"esbuild": "node build.mjs",
"ts:build": "npm run ts:clean && npm 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": "npm run build:clean && npm run lessc && npm run esbuild && npm run ts:build && cp -r types dist",
"build:prod": "npm run build:clean && webpack --config webpack.config.prod.js && npm run lessc",
"build:clean": "rm -rf dist",
"build:vendors": "rm -rf dist",
"lessc": "npm run lessc:faz && npm run lessc:showcase",
"lessc:faz": "lessc stylesheets/faz.less dist/css/faz.css --source-map",
"lessc:showcase": "lessc stylesheets/showcase.less dist/css/showcase.css --source-map",
"lessc:calendar": "lessc stylesheets/calendar.less dist/css/calendar.css --source-map",
"lessc:dev": "npm run lessc:dev:faz && npm run lessc:dev:showcase && npm run lessc:dev:calendar",
"lessc:dev:faz": "lessc stylesheets/faz.less stylesheets/faz.css --source-map",
"lessc:dev:showcase": "lessc stylesheets/showcase.less stylesheets/showcase.css --source-map",
"lessc:dev:calendar": "lessc stylesheets/calendar.less stylesheets/calendar.css --source-map",
"test": "npm run test:browser",
"yarn": "npm run yarn:clean && npm run yarn:v2 && npm run yarn:install",
"yarn:install": "yarn install",
"yarn:clean": "rm -rf yarn.lock .yarn .yarnrc.yml .next node_modules",
"yarn:v2": "yarn set version berry && yarn config set nodeLinker node-modules"
},
"packageManager": "yarn@4.8.1"
}