-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.29 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
{
"name": "@arizona-framework/client",
"version": "0.5.1",
"description": "JavaScript client library for Arizona Framework",
"type": "module",
"main": "./priv/static/assets/js/arizona.min.js",
"module": "./priv/static/assets/js/arizona.min.js",
"exports": {
".": {
"import": "./priv/static/assets/js/arizona.min.js",
"require": "./priv/static/assets/js/arizona.min.js"
},
"./reloader": "./priv/static/assets/js/arizona-reloader.min.js"
},
"files": [
"README.md",
"LICENSE.md",
"package.json",
"priv/static/assets/js/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arizona-framework/arizona.git"
},
"homepage": "https://github.com/arizona-framework/arizona",
"bugs": {
"url": "https://github.com/arizona-framework/arizona/issues"
},
"keywords": [
"arizona",
"framework",
"erlang",
"javascript",
"client",
"websocket",
"realtime",
"server-side-rendering"
],
"author": "William Fank Thomé <contact@williamthome.dev>",
"license": "Apache-2.0",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"build:dev": "vite build --mode development",
"check:js": "biome check",
"fix:js": "biome check --write",
"format:js": "biome format --write",
"check:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\" \"#_build\" \"#_checkouts\" \"#doc\" \"#.claude\" \"#CLAUDE.md\" \"#AGENTS.md\"",
"fix:md": "markdownlint-cli2 --fix \"**/*.md\" \"#node_modules\" \"#_build\" \"#_checkouts\" \"#doc\" \"#.claude\" \"#CLAUDE.md\" \"#AGENTS.md\"",
"check:yaml": "uvx yamllint .",
"check:actions": "actionlint",
"test:e2e": "npx playwright test",
"test:unit": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@modelcontextprotocol/sdk": "^1.29.0",
"@playwright/test": "1.59.1",
"@vitest/coverage-v8": "4.1.5",
"jsdom": "29.0.2",
"markdownlint-cli2": "0.22.1",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-license": "3.7.1",
"rollup-plugin-visualizer": "7.0.1",
"terser": "5.46.2",
"vite": "8.0.10",
"vite-plugin-compression2": "2.5.3",
"vitest": "4.1.5"
},
"overrides": {
"tar": "7.5.13",
"@tootallnate/once": "3.0.1"
}
}