-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.92 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.92 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
{
"name": "faz",
"version": "0.4.3",
"description": "JS HTML Web Components",
"main": "dist/index.js",
"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.git"
},
"bugs": {
"url": "https://github.com/candango/faz/issues"
},
"homepage": "https://github.com/candango/faz#readme",
"author": "Flavio Garcia <piraz@candango.org>",
"license": "MIT",
"type": "module",
"keywords": [
"webcomponent",
"solidjs",
"faz",
"toolkit"
],
"dependencies": {
"less": "4.5.1",
"solid-js": "1.9.10"
},
"devDependencies": {
"@testing-library/jest-dom": "6.9.1",
"@types/jest": "30.0.0",
"@types/nise": "1.4.5",
"@types/node": "25.0.3",
"axios": "1.13.2",
"can-stache-loader": "3.0.0",
"esbuild": "0.27.2",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-solid": "0.6.0",
"http-server": "14.1.1",
"jsdom": "27.0.0",
"nise": "6.1.1",
"prettier": "3.7.4",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vite": "7.3.0",
"vite-plugin-solid": "2.11.10",
"vitest": "4.0.18"
},
"scripts": {
"watch": "npm run watch:clean && node watch.mjs",
"watch:clean": "rm -rf watch/dist",
"showcase": "http-server & npm run watch",
"esbuild": "node build.mjs",
"ts:build": "npm run ts:clean && npm run ts:declaration && cp -r types dist",
"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",
"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:dev": "npm run lessc:dev:faz && npm run lessc:dev:showcase",
"lessc:dev:faz": "lessc stylesheets/faz.less stylesheets/faz.css --source-map",
"lessc:dev:showcase": "lessc stylesheets/showcase.less stylesheets/showcase.css --source-map",
"test": "vitest run",
"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"
}