-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 823 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 823 Bytes
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
{
"name": "arka-client",
"version": "0.1.0",
"description": "Reference static web client for the arkA protocol",
"scripts": {
"dev": "vite",
"build": "rollup -c",
"lint": "eslint client/**/*.js scripts/**/*.js",
"lint:schema": "node scripts/validate-all.js",
"lint:md": "markdownlint \"**/*.md\"",
"test": "echo \"No tests yet\"",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^8.57.0",
"gh-pages": "^6.2.0",
"markdownlint-cli": "^0.39.0",
"rollup": "^3.29.0",
"typescript": "^5.6.3",
"vite": "^5.4.0"
}
}